当下有许多 mp3 文件,文件名如下
1-music1.mp3 2-music2.mp3 3-music3.mp3 4-music4.mp3 5-music5.mp3 ..... 10-music.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-가 삭제됩니다.