home
·
contact
·
privacy
projects
/
config
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28b59ff
)
Always overwrite destination files in symlink script.
author
Christian Heller
<c.heller@plomlompom.de>
Sat, 8 Aug 2015 02:11:22 +0000
(
04:11
+0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Sat, 8 Aug 2015 02:11:22 +0000
(
04:11
+0200)
symlink.sh
patch
|
blob
|
history
diff --git
a/symlink.sh
b/symlink.sh
index 8a5488e1a2e3ba225924da0d0584d2efa841e2c4..303fa98af980ebf4f48a2f437b777c148189eb91 100755
(executable)
--- a/
symlink.sh
+++ b/
symlink.sh
@@
-8,11
+8,11
@@
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 -
f
s $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 -
f
s $dir_user_thinkpad/$file ~/.$file
done
fi
if [ "$(id -u)" -eq "0" ]; then