현재 mp3 파일이 많이 있는데, 파일명은 다음과 같습니다
이전 접두어를 일괄 제거하는 방법.
人生最曼妙的风景,竟是内心的淡定与从容!
질문을 잘못 읽었습니다. 일괄 이름 변경에 관한 것입니다 일괄 이름 바꾸기는 ls, 파이프 및 rename명령을 사용할 수 있습니다. 다음 일괄 삭제 명령과 유사합니다.
ls
rename
ls | grep "^[0-9]{1,2}-music.mp3" | xargs -d"n" rmhttp://superuser.com/questions/392872/delete-files-with-regular-expression
ls | grep "^[0-9]{1,2}-music.mp3" | xargs -d"n" rm
perl-rename 's/prefix/replacement/'
for i in $( seq 1 10 );do mv $i-music$i.mp3 music$i,mp3; 완료
으아악
이렇게 하면 aaa-bbb.mp3 이름에서 aaa-가 삭제됩니다.
질문을 잘못 읽었습니다. 일괄 이름 변경에 관한 것입니다
일괄 이름 바꾸기는
ls
, 파이프 및rename
명령을 사용할 수 있습니다. 다음 일괄 삭제 명령과 유사합니다.
ls | grep "^[0-9]{1,2}-music.mp3" | xargs -d"n" rm
http://superuser.com/questions/392872/delete-files-with-regular-expression
perl-rename 's/prefix/replacement/'
for i in $( seq 1 10 );do
mv $i-music$i.mp3 music$i,mp3;
완료
으아악
이렇게 하면 aaa-bbb.mp3 이름에서 aaa-가 삭제됩니다.