Add install script

This commit is contained in:
Alexandre CATTEAU 2022-03-12 15:52:47 +01:00
parent 7dff3a842c
commit 7343401bab

10
install.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
run_directory=$(dirname "$0")
$user=$(whoami)
echo "Copying bashrc-mine to home directory..."
cp $run_directory/bashrc-mine /home/$user/.bashrc-mine
echo "Finished install. Exiting..."
exit 0