mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-01-20 04:48:05 -05:00
15 lines
255 B
Bash
15 lines
255 B
Bash
#! /bin/sh
|
|
|
|
test_fail() {
|
|
echo "$@" >&2
|
|
exit 1
|
|
}
|
|
|
|
echo $0 running
|
|
|
|
$RSYNC --version || test_fail '--version output failed'
|
|
|
|
$RSYNC --info=help || test_fail '--info=help output failed'
|
|
|
|
$RSYNC --debug=help || test_fail '--debug=help output failed'
|