파일 복사본을 만들기 위해 매우 긴 경로를 복사하여 붙여넣는 경우가 종종 있습니다.
cp /path/to/file/file1 /path/to/file/file1.bkp
파일 경로를 두 번 입력하지 않아도 되는 대체 유틸리티가 있습니까? 그것은 마치 -
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