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
<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>
$ sudo apt update
$ sudo apt upgrade
$ sudo reboot
$ sudo sed -i 's/rafaela/rosa/' /etc/apt/sources.list
$ sudo sed -i 's/rafaela/rosa/' /etc/apt/sources.list.d/official-package-repositories.list
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade
In order to bulk add prefix to filenames in a directory run the following comnmand for f in * ; do mv -- "$f" "2018-05-24_...