1994-10-25 01:27:43 +03:00
|
|
|
#!/bin/sh
|
1993-08-04 23:33:45 +04:00
|
|
|
# uuto
|
|
|
|
# Send files to a user on another system.
|
|
|
|
#
|
1994-10-25 01:27:43 +03:00
|
|
|
# Copyright (C) 1992, 1993 Ian Lance Taylor
|
1993-08-04 23:33:45 +04:00
|
|
|
#
|
|
|
|
# Please feel free do whatever you like with this exciting shell
|
|
|
|
# script.
|
|
|
|
#
|
|
|
|
# This is pretty trivial, since all the functionality was moved into
|
|
|
|
# uucp itself. The -t means to interpret the final argument as
|
|
|
|
# system!user, the -R means to copy directories recursively, and the
|
|
|
|
# -c means to not copy the files to the spool directory (may be
|
|
|
|
# overriden by -C or -p).
|
|
|
|
#
|
1994-10-25 01:27:43 +03:00
|
|
|
exec @BINDIR@/uucp -t -R -c $*
|