17 lines
490 B
Plaintext
17 lines
490 B
Plaintext
|
:
|
||
|
# uuto
|
||
|
# Send files to a user on another system.
|
||
|
#
|
||
|
# Copyright (C) 1992 Ian Lance Taylor
|
||
|
#
|
||
|
# 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).
|
||
|
#
|
||
|
@BINDIR@/uucp -t -R -c $*
|