diff options
author | Blaise Thompson <blaise@untzag.com> | 2017-08-25 23:54:39 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2017-08-25 23:54:39 -0500 |
commit | 5eb01e5962ba32416e597868f603b79304a61b9c (patch) | |
tree | d0b32927af9bf7af3cc6e3191d574053083cab8c | |
parent | a53e3fbe9ade7dc52f65737c0ebd0cb391d9e55a (diff) |
improve link.sh
-rw-r--r-- | dotfiles/pypirc (renamed from .pypirc) | 0 | ||||
-rw-r--r-- | dotfiles/spacemacs (renamed from spacemacs) | 1 | ||||
-rwxr-xr-x | link.sh | 25 |
3 files changed, 8 insertions, 18 deletions
diff --git a/.pypirc b/dotfiles/pypirc index 568f97d..568f97d 100644 --- a/.pypirc +++ b/dotfiles/pypirc diff --git a/spacemacs b/dotfiles/spacemacs index 9a32532..f3fa8fd 100644 --- a/spacemacs +++ b/dotfiles/spacemacs @@ -15,6 +15,7 @@ games git helm + latex markdown org pdf-tools @@ -1,27 +1,16 @@ #!/bin/bash -########## define - -dir=~/dotfiles # dotfiles directory -olddir=~/dotfiles_old # old dotfiles backup directory -files="spacemacs" # list of files/folders to symlink in homedir - -########## do - # create dotfiles_old in homedir -echo -n "Creating $olddir for backup of any existing dotfiles in ~ ..." +olddir=~/dotfiles_old mkdir -p $olddir -echo "done" # change to the dotfiles directory -echo -n "Changing to the $dir directory ..." +dir=~/dotfiles/dotfiles cd $dir -echo "done" -# move any existing dotfiles in homedir to dotfiles_old directory, then create symlinks from the homedir to any files in the ~/dotfiles directory specified in $files -for file in $files; do - echo "Moving any existing dotfiles from ~ to $olddir" - mv ~/.$file ~/dotfiles_old/ - echo "Creating symlink to $file in home directory." - ln -s $dir/$file ~/.$file +# move current files and link contained files +files=$(ls $dir) +for name in $files; do + mv ~/.$name ~/dotfiles_old/ + ln -s $dir/$name ~/.$name done |