bashrc-mine/install.sh

11 lines
207 B
Bash
Raw Normal View History

2022-03-12 15:52:47 +01:00
#!/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