チップス

linux 一括リネーム


一括リネーム
 
その1
 
ファイル名加工部分
 

ls *.txt | sed -e s/\.txt// | awk '{ print "test_" $1 }'


 
リネーム部分
 

xargs -n 2 mv

 


   チップス