config-bash/create-links.bash

12 lines
197 B
Bash
Raw Permalink Normal View History

2013-04-24 16:58:31 +02:00
#!/bin/bash
cd $HOME || exit 1
CONFDIR=.bash
ln -sf $CONFDIR/bash_profile .bash_profile
ln -sf $CONFDIR/bashrc .bashrc
ln -sf $CONFDIR/bash_logout .bash_logout
2014-08-29 15:17:59 +02:00
ln -sf $CONFDIR/inputrc .inputrc