Last active
October 10, 2015 05:40
-
-
Save saboyutaka/555516a04972138c7df4 to your computer and use it in GitHub Desktop.
symbolic_link.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DOT_FILES=( .zshrc .zprofile .aliases .aliases_mac .bashrc .bash_profile .bundle .gitconfig .gitignore .gemrc .inputrc .tigrc .vimrc .vimrc_bundle. .pryrc ) | |
for dotfile in ${DOT_FILES[@]} | |
do | |
ln -svf $HOME/Dropbox/dotfiles/$dotfile $HOME/$dotfile | |
done | |
ln -svf ~/Dropbox/setting_files/.atom ~/.atom | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment