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
Solved it > Posted it
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
<VirtualHost *:80>
ServerAdmin your@email.com
ServerName the-domain-that-you-want-to-add.com
ServerAlias www.the-domain-that-you-want-to-add.com
DocumentRoot /var/www/html/symbolic_link
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/html/symbolic_link>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
In order to bulk add prefix to filenames in a directory run the following comnmand for f in * ; do mv -- "$f" "2018-05-24_...