home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / a / bin / modules-.2 / modules- / modules-1.2.8 / insmod / lsmod.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1995-05-22  |  118 b   |  4 lines

  1. #!/bin/sh
  2. echo "Module:        #pages:  Used by:"
  3. cat /proc/modules | if [ $# -ge 1 ]; then grep "^${1} ";else cat;fi
  4.