blob: dc58c45d59743b729c006d67fd31960f525ab6d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# create the symbolic links to the files in this repository
cd `dirname $0`
CURRENT_PATH=`pwd`
ln -s $CURRENT_PATH/bash/.bashrc ~/.bashrc
ln -s $CURRENT_PATH/bash/.bash_aliases ~/.bash_aliases
|