1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-25 08:47:13 -07:00
rc/sh/autosync

22 lines
543 B
Plaintext
Raw Normal View History

2017-11-04 06:25:51 -07:00
#!/usr/bin/env zsh
2021-07-29 00:37:35 -07:00
# YES_ZSH
# NO_BASH
# NO_DASH
2021-09-23 06:48:05 -07:00
# NO_ASH
# TODO: portable way of dodging aliases to allow other shell support?
2021-07-29 00:37:35 -07:00
2021-07-30 17:57:08 -07:00
autosync() { ### @-
### combine `inotifywait` and `rsync`.
### this is sometimes nicer than `ssh`-ing into a server and running `vim` remotely.
2017-11-04 06:25:51 -07:00
target="$1"
shift
# as a reminder not to get the argument order mixed up:
echo -E "rsyncing to $target" >&2
while inotifywait -q -e create,modify "$@"; do
\rsync -rtl "$@" "$target"
done
}
2021-07-29 00:37:35 -07:00
[ -n "${preload+-}" ] || autosync "$@"