mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
9 lines
127 B
Bash
Executable File
9 lines
127 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! type pv >/dev/null 2>&1; then
|
|
telln 'Missing `pv` command.'
|
|
exit 1
|
|
fi
|
|
|
|
yes | pv |ssh "$1" "cat >/dev/null"
|