In order to bulk add prefix to filenames in a directory run the following comnmand
for f in * ; do mv -- "$f" "2018-05-24_$f" ; done
*solution taken from: https://stackoverflow.com/a/4787428
In order to bulk add prefix to filenames in a directory run the following comnmand
for f in * ; do mv -- "$f" "2018-05-24_$f" ; done
*solution taken from: https://stackoverflow.com/a/4787428
In order to bulk add prefix to filenames in a directory run the following comnmand for f in * ; do mv -- "$f" "2018-05-24_...
No comments:
Post a Comment