I want to be able to prepend a string to the beginning of each text file in a folder. How can I do this using bash on Linux?
Here is an example :
for f in *; do mv "$f" "whatever_$f" done