update install script

This commit is contained in:
Eric D. Rohler 2018-10-18 05:59:19 -04:00
parent 21efdd9d00
commit 32e870fa7f

View File

@ -1,6 +1,8 @@
#!/usr/bin/bash #!/usr/bin/bash
for f in * for f in $(ls --ignore="*.sh" --ignore="*.md")
do do
ln -s "$f" "$HOME/.${f##*/}" # echo $f
ln -s "$(pwd)/$f" "$HOME/.${f##*/}"
done done