我希望能够做到这一点
mv /long/path/to/file/old.txt /long/path/to/file/new.txt
无需输入两次目录。我想象类似的事情
rename /long/path/to/file/old.txt new.txt
这可能吗?
答案1
您可以通过大括号扩展来做到这一点:
mv /long/path/to/file/{old,new}.txt
我希望能够做到这一点
mv /long/path/to/file/old.txt /long/path/to/file/new.txt
无需输入两次目录。我想象类似的事情
rename /long/path/to/file/old.txt new.txt
这可能吗?
您可以通过大括号扩展来做到这一点:
mv /long/path/to/file/{old,new}.txt