Working on help screen.

This commit is contained in:
Louwrentius 2009-03-08 14:24:28 +00:00
parent ffeaf1ccf6
commit 979b1cc0a4
1 changed files with 4 additions and 1 deletions

View File

@ -151,6 +151,9 @@ showusage () {
echo -e "--transfer | -t This option specifies that an item will be downloaded by the node "
echo -e " from the server or share to the local node for processing."
echo
echo -e "--no-scp | -b Do not use scp for downloading items. Use cp instead. Assumes that a"
echo -e " network file system (NFS/SMB) is mounted under a local mountpoint."
echo
echo -e "Example: encoding some wav files to mp3 using lame:"
echo
echo -e "$0 -c 'lame ' -d /path/to/wavfiles -l logfile -j (wach out for the space in -c)"
@ -376,7 +379,7 @@ do
fi
shift 2
;;
--no-secure-copy|-b )
--no-scp |-b )
SECURE_COPY=0
add_var_to_config SECURE_COPY "$SECURE_COPY"
shift 1