usage
批量修改名字
#!/bin/bash
for files in $(ls *.png)
do
   mv $files "user_level_"${files//(1)/_icon}
doneLast updated
Was this helpful?
批量修改名字
#!/bin/bash
for files in $(ls *.png)
do
   mv $files "user_level_"${files//(1)/_icon}
doneLast updated
Was this helpful?