usage

批量修改名字

#!/bin/bash
for files in $(ls *.png)
do
   mv $files "user_level_"${files//(1)/_icon}
done

Last updated

Was this helpful?