summary refs log tree commit diff
path: root/bin/sync-shell-files
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sync-shell-files')
-rwxr-xr-xbin/sync-shell-files15
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}:"