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:
030be9f
)
Add symlinking script.
author
Christian Heller
<c.heller@plomlompom.de>
Sun, 3 May 2015 01:53:38 +0000
(
03:53
+0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Sun, 3 May 2015 01:53:38 +0000
(
03:53
+0200)
symlink.sh
[new file with mode: 0644]
patch
|
blob
diff --git a/symlink.sh
b/symlink.sh
new file mode 100644
(file)
index 0000000..
abb261c
--- /dev/null
+++ b/
symlink.sh
@@ -0,0
+1,7
@@
+#!/bin/sh
+
+dir=~/config/dotfiles
+cd ~
+for file in $dir; do
+ ln -s $dir/$file ~/.$file
+done