复制文件的最小命令

复制文件的最小命令

我经常发现自己复制粘贴很长的路径来创建文件的副本

cp /path/to/file/file1 /path/to/file/file1.bkp

是否有替代实用程序不需要我输入两次文件路径?就像是 -

nameOfExecutible /path/to/file/file1 'bkp'

注意:我不想做cdto file1s 父目录。

答案1

是的,

cp /path/to/file/file1{,.kbp}

这将自动扩展为cp /path/to/file/file1 /path/to/file/file1.kbp

相关内容