home *** CD-ROM | disk | FTP | other *** search
- #! /bin/csh
- # names - generate random names
- #
- # usage: names [pages]
- # where 'pages' is how many pages of names you want. Default = 1 page.
-
- if ($#argv == 0) then
- @ n = 336
- else
- @ n = 336 * $1
- endif
-
- # BSD script -- uncomment this line if BSD
- name $n | sort -u | pr -6 | expand
-
- # sysv script -- uncomment this line if SYSV
- # note: no tab expansion performed
-
- #name $n | sort -u | pr -6
-
-