home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.orig.lzh
/
input
/
newsrunning
< prev
next >
Wrap
Text File
|
1989-06-27
|
439b
|
32 lines
#! /bin/sh
# newsrunning - turn news processing on and off
# =()<. ${NEWSCONFIG-@<NEWSCONFIG>@}>()=
. ${NEWSCONFIG-/usr/lib/news/bin/config}
PATH=$NEWSCTL/bin:$NEWSBIN/input:$NEWSBIN:$NEWSPATH ; export PATH
umask $NEWSUMASK
stop=$NEWSARTS/in.coming/stop
case "$1"
in
on)
rm -f $stop
;;
off)
if test ! -r $stop # don't update already-existing file
then
>$stop
fi
;;
*)
echo "Usage: $0 on/off" >&2
exit 2
;;
esac
exit 0