我经常发现自己复制粘贴很长的路径来创建文件的副本
cp /path/to/file/file1 /path/to/file/file1.bkp
是否有替代实用程序不需要我输入两次文件路径?就像是 -
nameOfExecutible /path/to/file/file1 'bkp'
注意:我不想做cd
to file1
s 父目录。
答案1
是的,
cp /path/to/file/file1{,.kbp}
这将自动扩展为cp /path/to/file/file1 /path/to/file/file1.kbp