mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
Add a setup script
This commit is contained in:
parent
b78f5bfde7
commit
13be8c0c7b
1 changed files with 11 additions and 0 deletions
11
envsetup
Normal file
11
envsetup
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
BIN_DIR=$(pwd)
|
||||||
|
|
||||||
|
# Backup the existing bashrc and bash aliases
|
||||||
|
mv ~/.bashrc ~/.bashrc.bak
|
||||||
|
mv ~/.bash_aliases ~/.bash_aliases.bak
|
||||||
|
# Link to the new ones
|
||||||
|
ln -s ${BIN_DIR}/.bashrc ~/.bashrc
|
||||||
|
ln -s ${BIN_DIR}/.bash_aliases ~/.bash_aliases
|
||||||
|
# Copy the bash host file into place
|
||||||
|
cp ${BIN_DIR}/.bash_host ~
|
Loading…
Reference in a new issue