Skip to content

Instantly share code, notes, and snippets.

@Vchekryzhov
Created September 17, 2018 08:56
Show Gist options
  • Save Vchekryzhov/b090a82c74bb9af161bf80f228d83e3c to your computer and use it in GitHub Desktop.
Save Vchekryzhov/b090a82c74bb9af161bf80f228d83e3c to your computer and use it in GitHub Desktop.
bash scripts
#Переименование файлов
j=0;
for i in *.jpg;
do let j+=1;
mv $i file$j.jpg ;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment