diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-01-17 07:17:17 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-01-17 07:17:17 -0800 |
commit | e58a6497d050480c56b9689004b9ded1cc2b0b9d (patch) | |
tree | 291b4ae5b114d06d96498f2312a9ab3e466ca501 /bin/sync-shell-files | |
parent | [emacs] some small changes to the UI. (diff) | |
download | emacs.d-e58a6497d050480c56b9689004b9ded1cc2b0b9d.tar.gz |
Remove configuration for `vim` and all the scripts
No need to carry a configuration for `vim` anymore, and most of the scripts are either useless, or have moved to the *toolbox* repository on GitHub (and are now in go, and sometimes with tests).
Diffstat (limited to '')
-rwxr-xr-x | bin/sync-shell-files | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/sync-shell-files b/bin/sync-shell-files deleted file mode 100755 index dca1262..0000000 --- a/bin/sync-shell-files +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -to_host="$1" - -if [[ -z "${to_host}" ]]; then - echo "usage: $0 <host>" - exit 1 -fi - -files="inputrc gitconfig" -for file in $files; do - rsync -avz --delete "${HOME}/src/dotfiles/${file}" "${to_host}:.${file}" -done - -[ -f "${HOME}/.gitconfig.private" ] && rsync -avz --delete "${HOME}/.gitconfig.private" "${to_host}:" |