You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
533 B
Plaintext

Notes for video: http://www.youtube.com/watch?v=zhdO46oqeRw
1. symlink dotfiles
cd /media/Genjutsu/Public/dotfiles
stow -v -t ~/Remote common downloader private themes
2. delete symlink
stow -v -D -t ~/Remote common
3. redo symlink
stow -v -R -t ~/Remote common
4. using ignores
stow -v -t ~/Remote Genjutsu --ignore='.Trash' --ignore='.Trash-1000' --ignore='lost\+found'
# ignore "dot" and "plus" signs folders using perl regex
# credit: Zoffix from #perl irc
stow -v -t ~/Remote Genjutsu --ignore='(?:\..*|[^+]*\+[^+]*)'