repo.or.cz
/
mvillalba-dotfiles.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update install script
[mvillalba-dotfiles.git]
/
install
blob
9f2b4246792dfea38fb01090093ab0eebac4e6d3
1
#!/bin/bash
2
3
DOTFILES
=
"vim vimrc"
4
5
# Don't edit below this line
6
for
df
in
$DOTFILES
7
do
8
echo
"Installing .
$df
."
9
ln
-nfs
`pwd`
/
"
$df
"
~
/
.
"
$df
"
10
done