Bash
製作文件副本的最小命令
我經常發現自己複製粘貼長路徑以創建文件的副本
cp /path/to/file/file1 /path/to/file/file1.bkp
是否有其他實用程序不需要我輸入兩次路徑/到/文件?就像是 -
nameOfExecutible /path/to/file/file1 'bkp'
注意:我不想做一個
cd
tofile1
s 父目錄。
是的,
cp /path/to/file/file1{,.kbp}
這將自動擴展為
cp /path/to/file/file1 /path/to/file/file1.kbp