]> git.donarmstrong.com Git - bin.git/blobdiff - new_home_directory
tweak get_pdf
[bin.git] / new_home_directory
index 6bd7b3d27f255be631bda5fee845e969811a62da..7b05658a18c118a29b3f6ba5eddecd2d9e2567f7 100755 (executable)
@@ -19,13 +19,21 @@ mkdir .home_modules;
 )
 # make a home backup directory
 mkdir home_backup;
-mv .wgetrc .svn .sversionrc home_backup/;
-# run the appropriate command to set the symlinks correctly
-sh -c "$(awk -F '      ' '{print $2}' ~/.home_modules/base/sa_base) ~/.home_modules;"
+for a in .wgetrc .svn .sversionrc .subversion .bash_profile .bash_logout .bashrc .ssh; do
+    if [ -e $a ]; then
+       mv $a home_backup/;
+    fi;
+done;
 mkdir .sa.d;
 ln -s ~/.home_modules/*/sa_* .sa.d/;
+# run the appropriate command to set the symlinks correctly
+~/bin/sa --hooks-only update
 cat -<<EOF> .sa.d/sa_local
 ~/bin
 ~/lib
 EOF
-exec sa update;
\ No newline at end of file
+# move back the .ssh stuff
+if [ -e home_backup/.ssh ]; then
+    cp -f home_backup/.ssh/* .ssh/;
+fi;
+exec ~/bin/sa update;
\ No newline at end of file