shell find sed 批量修改文件名
比如替换pic_001 为 001 for file in `find . -type f` do newfile=`echo $file | sed ‘s/pic_//g’` mv $file $newfile done
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed