ファイルのコピーを作成するために、コピーして貼り付ける長いパスを見つけることがよくあります
cp /path/to/file/file1 /path/to/file/file1.bkp
パス/ to /ファイルを2回入力する必要がない代替ユーティリティはありますか?何かのようなもの -
nameOfExecutible /path/to/file/file1 'bkp'
注:cd
からfile1
sの親ディレクトリを作成したくありません。
はい、
cp /path/to/file/file1{,.kbp}
自動的にcp /path/to/file/file1 /path/to/file/file1.kbp
に展開されます