home · contact · privacy
Improve / fix symlinking script.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 3 May 2015 02:03:58 +0000 (04:03 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 3 May 2015 02:03:58 +0000 (04:03 +0200)
symlink.sh [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index abb261c..3d399d3
@@ -2,6 +2,6 @@
 
 dir=~/config/dotfiles
 cd ~
-for file in $dir; do
+for file in `ls $dir`; do
     ln -s $dir/$file ~/.$file
 done