1
1
Fork 0

Add create_symlinks.sh

This commit is contained in:
Jonathan Schleifer 2014-09-06 19:03:57 +00:00
parent 50b9b03d89
commit 9fe665bd49

13
create_symlinks.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
rel_dir="${PWD#$HOME/}"
echo "Configs relative to home in $rel_dir."
for i in *; do
case $i in
README | create_symlinks.sh | eu_US.keylayout | *~)
;;
*)
ln -s $rel_dir/$i $HOME/.$i
;;
esac
done