나는 이것을 할 수 있기를 원합니다
mv /long/path/to/file/old.txt /long/path/to/file/new.txt
디렉토리를 두 번 입력할 필요가 없습니다. 나는 다음과 같은 것을 상상한다
rename /long/path/to/file/old.txt new.txt
가능합니까?
답변1
중괄호 확장을 통해 이 작업을 수행할 수 있습니다.
mv /long/path/to/file/{old,new}.txt
나는 이것을 할 수 있기를 원합니다
mv /long/path/to/file/old.txt /long/path/to/file/new.txt
디렉토리를 두 번 입력할 필요가 없습니다. 나는 다음과 같은 것을 상상한다
rename /long/path/to/file/old.txt new.txt
가능합니까?
중괄호 확장을 통해 이 작업을 수행할 수 있습니다.
mv /long/path/to/file/{old,new}.txt