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