home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / bin / batch < prev    next >
Encoding:
Text File  |  2006-07-20  |  152 b   |  9 lines

  1. #! /bin/sh -e
  2. if [ "$#" -gt 0 ]; then
  3.     echo batch accepts no parameters
  4.     exit 1
  5. fi
  6. prefix=/usr
  7. exec_prefix=${prefix}
  8. exec ${exec_prefix}/bin/at -qb now
  9.