aboutsummaryrefslogtreecommitdiff
path: root/send.sh
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-10-15 20:56:41 -0400
committerMitch Riedstra <mitch@riedstra.us>2019-10-15 20:56:41 -0400
commiteefbd029b55b2782b0d7b11b4989ce0ca9b256cd (patch)
tree535511fd3154342117d67171e28a312bd30c7f87 /send.sh
parent5840f413825e053b645a338d71c1916a06094335 (diff)
downloaddotfiles-eefbd029b55b2782b0d7b11b4989ce0ca9b256cd.tar.gz
dotfiles-eefbd029b55b2782b0d7b11b4989ce0ca9b256cd.tar.xz
Massive organization of my dotfiles
Diffstat (limited to 'send.sh')
-rw-r--r--send.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/send.sh b/send.sh
deleted file mode 100644
index 7db7c7a..0000000
--- a/send.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-set -e
-# set -x
-
-# Simple shell script to package and send over my dotfiles to a remote machine
-
-package="$(mktemp -d)"
-
-for _f in bashrc mkshrc tmux.conf tmux_helper.sh ; do
- cp "$_f" "$package/.$_f"
-done
-
-touch "$package/.tmux.conf.local"
-
-echo "Sending: "
-ls -AF "$package" | sed -e's/^/ /'
-
-for host in "$@" ; do
- echo "Operating on host: $host"
- tar -C "$package" -czf - . | ssh "$host" "tar -xzf -"
-done
-
-rm -rf "$package"