home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Distributions / ucb / spencer_2bsd.tar.gz / 2bsd.tar / src / net / setlength < prev    next >
Text File  |  1980-02-17  |  158b  |  11 lines

  1. # set the length of the logfiles
  2. set a=$1
  3. set tmp=setl$$
  4. shift
  5. unset noclobber
  6. foreach i ($argv)
  7.     tail -$a $i >/tmp/$tmp
  8.     cp /tmp/$tmp $i
  9. end
  10. rm -f /tmp/$tmp
  11.