wiki:bash_commands
This is an old revision of the document!
Table of Contents
Bash commands
Remove first character:
for f in *; do mv "$f" "${f:1}"; done
Add 8 to filename:
for f in *; do mv "$f" "8$f"; done
Tested on
See also
References
wiki/bash_commands.1663624422.txt.gz · Last modified: 2022/09/19 21:53 by antisa