blob: 2ee2f515ef9ac3bd7a9fae6f1910730c31fa7094 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
#
# .show_good_modules,v 1.2 2001/05/27 12:09:20 fukachan Exp
#
w3m -dump 00modlist.long.html |\
perl -nle 'print if /\s+[SRM].p.|^$|^[A-Za-z0-9:]+$/' |\
uniq
exit 0;
|