Skip to content

Instantly share code, notes, and snippets.

@hiro08gh
Last active January 15, 2020 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiro08gh/aea856aa7c2a1ae9dd6c2e7973fe5918 to your computer and use it in GitHub Desktop.
Save hiro08gh/aea856aa7c2a1ae9dd6c2e7973fe5918 to your computer and use it in GitHub Desktop.
ドットファイルにシンボリックリンク貼るスクリプト
#!/bin/bash
DOT_FILES=( .zshrc .tmux.conf .vimrc )
for file in ${DOT_FILES[@]}
do
ln -s $HOME/dotfiles/$file $HOME/$file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment