Bash

製作文件副本的最小命令

  • August 30, 2017

我經常發現自己複製粘貼長路徑以創建文件的副本

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

是否有其他實用程序不需要我輸入兩次路徑/到/文件?就像是 -

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

注意:我不想做一個cdto file1s 父目錄。

是的,

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

這將自動擴展為cp /path/to/file/file1 /path/to/file/file1.kbp

引用自:https://unix.stackexchange.com/questions/66889