TipsRename Files by Deleting or Replacing SubstringShow/Hide the code1 2 3 for f in `ls *.mp3`; do mv "$f" `echo "$f" | sed 's/生活大爆炸/TBBT/g'` done