标签: bash
我想在bash shell中执行此操作:
n=7 cp ~/file_{1..$n}.dat .
我想要它执行的是cp ~/file_{1..7}.dat .,但我知道这不是正确的方法。有人能给我正确的格式(不必使用循环)吗?
cp ~/file_{1..7}.dat .