I want to create my own automated dotfiles folder. (I'll be using git to use version control on my dotfiles, but that's irrelevant for the question)

What i simply want is to symbolically link all the files and folders in ~/dotfiles to my home folder. Being not good at all with bash I can't do this. Please help me with this.

I would also appreciate the following features if possible.

  • Folders are only shallowly linked
  • My files could be in the dotfiles folder without the actual dot in the file-name (like ~/dotfiles/vimrc rather than ~/dotfiles/.vimrc)
  • It should be able to ignore some files, like my .git file which are stored in the same folder

Of course if you already know a service providing this, that is at least as good as providing some do-myself commands. Note how I specifically want it to be bash or something that most likely exists on all unix machines (so i guess commands using g++ are fine).

link|improve this question

Would the links be in the ~/dotfiles dir, or would you move the actual dotfiles into that directory, and put symlinks in the original location? – Marc B Mar 8 '11 at 20:38
The second. originals in ~/dotfiles and links in ~ – Tarrasch Mar 8 '11 at 20:41
feedback

2 Answers

up vote 3 down vote accepted

Give this a try:

ln -s ~/dotfiles/* ~

There shouldn't be any need for a loop. Of course, you can use find if you need something recursive.

Edit:

To make the destination files hidden:

for f in ~/dotfiles/*
do
    ln -s "$f" "$HOME/.${f##*/}"
done
link|improve this answer
That is good, it ignores the hidden files (like .git) aswell :). However could you make it so the files put in the home folder become hidden (this is starting with a .). For example it should link ~/dotfiles/vimrc to ~/.vimrc. Is that possible? If it is you will get correct answer. :) – Tarrasch Mar 9 '11 at 12:46
@Tarrasch: Please see my edited answer. – Dennis Williamson Mar 9 '11 at 14:43
Thanks! Given the knowledge you gave me, I've created my own github repo that does what I've described above plus backuping. Feel free to try it out! :) link – Tarrasch Mar 9 '11 at 15:57
feedback

I am not sure if I'm getting the question right, but if you looking for symlinks of dir-content, try

for f in `ls -1 .dotfiles`
do
   ln -s .dotfiles/$f ~/$f
done

maybe that already does the trick

link|improve this answer
3  
Please don't parse the output from ls... – larsmans Mar 8 '11 at 20:46
Why is that larsmans, can you elaborate? – Tarrasch Mar 8 '11 at 20:51
I get it to work quite well. Only I would like to be able to ignore files. Is there something like if $f == '.git' then continue? Preferably I would write a list of ignored files and folders. Thanks – Tarrasch Mar 8 '11 at 20:53
2  
ls is completely unnecessary: for f in .dotfiles/* (then ln -s "$f" "$HOME/$f"). Also, you need to prefix an @ to the username so they're automatically notified of replies. @Tarrasch: if [[ $f = '.git' ]]; then continue; fi or [[ $f = '.git' ]] && continue – Dennis Williamson Mar 9 '11 at 1:28
Thanks for excellent comment @Dennis Williamson! – Tarrasch Mar 9 '11 at 12:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.