#!/bin/sh
usage="Taylor UUCP @VERS@, copyright (C) 1991, 92, 93, 94, 1995, 2002 Ian Lance Taylor
Usage: $0 [options] file1 [file2...] system!user
-c,--nocopy: Do not copy local files to spool directory (default)
-C,-p,--copy: Copy local files to spool directory
-d,--directories: Create necessary directories (default)
-f,--nodirectories: Do not create directories (fail if they do not exist)
-g,--grade grade: Set job grade (must be alphabetic)
-m,--mail: Report status of copy by mail
-n,--notify user: Report status of copy by mail to remote user
-R,--recursive: Copy directories recursively (default)
-r,--nouucico: Do not start uucico daemon
-s,--status file: Report completion status to file
-j,--jobid: Report job id
-W,--noexpand: Do not add current directory to remote filenames
-u,--usage name: Set user name
-x,--debug debug: Set debugging level
-I,--config file: Set configuration file to use
-v,--version: Print version and exit
--help: Print help and exit
Report bugs to taylor-uucp@gnu.org"
case $ 1)
case "z${1}" in
z--help)
echo "$usage"
exit 0
;;
z--version)
echo "uuto (Taylor UUCP) @VERS@"
echo "Copyright (C) 1991, 92, 93, 94, 1995, 2002 Ian Lance Taylor"
echo "This program is free software; you may redistribute it under the terms of"
echo "the GNU General Public LIcense. This program has ABSOLUTELY NO WARRANTY."
exit 0
;;
*) ;;
esac
;;
*) ;;
esac
exec @BINDIR@/uucp -t -R -c $*