home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / bin / sensible-pager < prev    next >
Text File  |  1998-08-16  |  185b  |  8 lines

  1. #!/bin/bash
  2. shopt -s execfail
  3. exec ${PAGER:-pager} "$@"
  4. exec more "$@"
  5. echo "Couldn't find a pager!" 1>&2
  6. echo "Set the \$PAGER environment variable to your desired pager." 1>&2
  7. exit 1
  8.