home · contact · privacy
Fix simplemail script newlines-dropping issue.
[config] / symlink.sh
index 8a5488e1a2e3ba225924da0d0584d2efa841e2c4..e2f614f726a874a685933eaf5228266aa68413d3 100755 (executable)
@@ -4,15 +4,20 @@ set -x
 
 dir_user_minimal=~/config/dotfiles_user_minimal
 dir_user_thinkpad=~/config/dotfiles_user_thinkpad
+dir_user_server=~/config/dotfiles_user_server
 dir_root=~/config/dotfiles_root
 homedir=`echo ~`
 find ~ -lname $homedir'/config/*' -delete
 for file in `ls $dir_user_minimal`; do
-    ln -s $dir_user_minimal/$file ~/.$file
+    ln -fs $dir_user_minimal/$file ~/.$file
 done
 if [ "$1" = "thinkpad" ]; then
     for file in `ls $dir_user_thinkpad`; do
-        ln -s $dir_user_thinkpad/$file ~/.$file
+        ln -fs $dir_user_thinkpad/$file ~/.$file
+    done
+elif [ "$1" = "server" ]; then
+    for file in `ls $dir_user_server`; do
+        ln -fs $dir_user_server/$file ~/.$file
     done
 fi
 if [ "$(id -u)" -eq "0" ]; then