标签: bash shell
我正在尝试使用cat ${i}以i为1到n读取某些文件(基本上我不知道会有多少个文件),但是它不起作用。 有什么想法吗?
cat ${i}
i
ex1:
cat ${1} #works
ex2:
i=1 cat ${i} #doesnt work