I would like to add prefix on all folders and directories.
Example:
I have
Hi.jpg 1.txt folder/ this.file_is.here.png another_folder.ok/
This could be done running a simple find command:
find
find * -maxdepth 0 -exec mv {} PRE_{} \;
The above command will prefix all files and folders in the current directory with PRE_.
PRE_