JC's Tools
JC's Tools

This is John Chambers' directory of useful tools. What is here will change from time to time, as I change my mind about which tools I want to make public. At the end is a complete list of the files here. But first a list of the more interesting tools:

Documentation

Unix manuals online
A simple web interface to the standard Unix online manuals. This uses the m2h CGI script.

WWW tools

ae
Ever wonder what your browser tells the server? This script sends you a dump of its arguments and environment. You can experiment with adding stuff to the URL, then hit Return and it will show you how the URL is parsed. Here's the source.
w3cat
This is a Web version of the Unix cat ("catenate") command. It reads one or more URLs and writes their contents to standard output. It has options to show you what's happening, so it is useful for debugging network problems. This program originally used the libwww module, but performance problems and hung connect calls led to replacing it with some special-purpose high-performance modules. If you are curious about how to do such things, you might examine the modules used by this program.

w3ld
This does a download of a web directory to the current directory. It is recursive to a specifiable depth, so it can produce a mirror of a directory tree. But it only works with directories that look like directories; it can be defeated by an index.html file.


Character Set tools

PC Keyboard mappings
For software that uses the ALT key to shift to the upper 128 characters in the ISO 8859 character set(s), this show what characters you get. Most linux software, some BSD, and assorted other programs do this.
The ISO 8859-1 character set
This is a list of all the 256 characters, one per line, showing the hex, octal, and decimal encodings, plus the actual character (for printables) and its descriptive name (for non-alphanumerics).

chrset,
The chrset file is a small perl program that outputs the entire annotated character set.

Network Management tools

SNMP Over the Web
SNMP agents can take months to get working, they are difficult to use, and are very slow due to the need to do a series of get-next requests to get a table of information. This is a demo of getting the same information via HTTP. It took me a day to implement, including a couple of "private MIBs". It fetches entire tables with a single request, so it radically outperforms SNMP for table accesses. Why would anyone bother with SNMP any more?

Monitor interfaces
A tcl (wish) script that produces a constantly-updated display of the states of a machine's interfaces.

Ping continuously
A tcl (wish) script that displays a list of remote hosts and the timings for pings repeated at N-second intervals.

JavaScript tools

Popup Help Window
Several ways to get a new window to appear that contains some "help" information from a separate file.
Image preloading
This is a JavaScript demo that shows how to preload images for a second page. It also shows and explains how this may be misused by unscrupulous web sites to embarrass you.

Browser ID
JavaScript demo showing how to identify the user's browser and send different data depending on browser type.


Tools

This is a list of shell, perl and tcl tools to do some useful tasks.

Modules
Many of the perl and tcl programs here use one or more of the following modules, so I've put them all here for easy downloading:

Backup.pm
renames a file by adding '-' to its name. It's recursive, of course.
CGI_Lite.pm
the stripped-down version of the libwww module. Very useful for all but the most complex and sophisticated web applications.
DT.pm
simple date-time routine.
Help.w
is a popup-help package for tcl/tk (wish).
HTMLdir.pm
produces a simple HTML listing of a directory.
HTTPcon.pm
makes HTTP connection to a host, returns open file.
Source.w
is a wrapper for the tcl source command that searches $PATH.
URLdata.pm
returns open file for a URL, data only (no HTTP headers).
URLhref.pm
expand HREF to full URL.
URLopen.pm
returns open file for a URL, prepared to read HTTP headers.
URLtrim.pm
discards parameters from a URL.
Vopt.pm and Verbose.pm, Verbose.w
Verbose-mode init routines.

Programs
Many of the following programs use the above modules:

ABC music programs
abc, abcgui
is an experimental browser helper for ABC music notation.
abc2bars
produces the first two bars of each of a list of ABC tunes.
abc2html
converts ABC music notation to HTML.
abcDesc
builds a .htaccess file from .abc files showing the titles.
abc_netscape
is a netscape helper for ABC music notation, which converts the file to PostScript and starts ghostview to display the results.
abccode
is a script that reads ABC music files and outputs numeric codes for the tunes, using the abcCode.pm module.
abcjoin, abcmedley
join ABC music files, and optionally renumber the tunes, in somewhat different ways.
abcpar
add parallel like to a chunk of ABC music notation.
abcsplit
extracts ABC tunes from a file and writes each to a file whose name is based on the first title.
Converts hostnames to IP addresses and vice-versa. There is no verbiage, so that its output can be used in scripts. See also NSlookup
abctoc
generates a table of contents from ABC music files.
abctr
transposes a fragment of ABC music notation.
Addr
A perl wrapper for the nslookup command. It strips away all the "user-friendly" verbage, so you can use it in other scripts.
anon.ftp
is a sh script to configure anonymous FTP. Some systems still come without this working, and someone at IBM created a very portable script to do the job.
b-c
converts the verbose-ized *.b files to *.c files, selecting and/or suppressing verbose output.
b64d
decodes base-64 files.
bmod
verbose-izes *.c files, making them compatible with the V.h package.
Bp
is a simple backup-in-place script, that (recursively) adds a hyphen to the end of one or more file names. You can restore them with Rs
cpdir, lndir
does a recursive copy of a directory tree, creating all the target directories and either copying or linking all the files. If you want to see how to recurse through directories in perl, you might look at this program.
DC
is a little tcl-coded Desc Calculator. When the fancy one in the system library won't do what I want, I just add a new button to this one and bind it to a proc.
Deliver
is a mail-delivery program, useful in testing email failures.
FindDiffFiles
lists files with the same name but different contents.
FindHdrFiles
lists all the *.h files in the system.
FindWaste
lists files that are large and aren't being used.
Helper
is a generic "helper" program that will start up a program to handle a file. It works with browsers and other programs that need a similar plugin "handle this file" capability. Its config file is a simple, non-proprietary format that you can edit with any editor.
HomeDir
produces a list of users' home directories, with no extraneous text, so you can use it in a script.
Hosts
converts nslookup output to /etc/hosts lines.
IF
displays the status of a machine's interfaces, updated every N seconds.
Kill.bsd, Kill.sys5, Kill.linux
are scripts that kill processes based on a grep of a ps listing. Different versions are needed due to the variety of ps commands.
IFind
searches all the system include directories for patterns. This is useful when porting programs to a new machine and the #include lines produce "no such file" errors or the macros come up as undefined functions.
These are scripts that kill processes based on a grep of a ps list. Different versions are needed due to the variations in the ps command, but one of these should work on most Unix-like systems. We also have Kill.aix, Kill.hpux, Kill.solaris, Kill.sunos and, but these are probably the same as one of the above.
Man
converts a man page to plain text, suitable for editing. This uses the stripman command to remove underscores and other unprintable stuff.
Man.html and m2h
are a web interface to the Unix online manuals. You can look up a man page from your browser, and references to other man pages are converted to hyperlinks.
mfl
sorts the names in a Makefile macro definition. This is an example of a tool designed to be called with vi's !cmd mechanism to rewrite a chunk of text.
Monitor
is the tcl/tk interactive tool "rmt", renamed because "rmt" is a common Unix commant. This is an interactive debugger for tunning wish scripts, and is an excellent example of how to do IPC using tcl's simple, elegant "send" command.
Mrpl
builds a reply header from a block of email headers.
NSlookup or
Calls nslookup and strips off all its verbiage, so that its output can easily be used in scripts. See also Addr
O8, OF, OV
alphabetizes and balances a list of .o files in a Makefile. This is a really obscure example of a special-purpose tool designed to be called with vi's !cmd mechanism to do some specific text massaging. See mfl for another such text tool.
pctbar
is a wish script that produces a percent-completion bar.
Pings,
a wish script that produces a window with a running display of a list of machines and how they are responding to pings.
PurgeFiles
searches through directories for links to one or more files, and deletes all of them. Useful for getting rid of old versions and backups, no matter what they may be called.
Rmake
is a recursive make, that searches through subdirectories and makes the targets anywhere that they are found.
Rp, Frp, Vrp
is a perl program that does match-and-replace on a list of files. Frp rewrites only function names; Vrp rewwrites only variable names.
Rs
restores files backed up via Bp
RSA
is the famous RSA encryption in three lines of perl. (There is also a nice t-shirt with this code on it, which is available for sale. If you would like to be an international arms distributor, you can become one for just the price of this t-shirt. Buy one before it becomes legal! ;-)
rename
does perl pattern match and replace on file names. This is an excellent example of something simple and useful which is very easy in perl, and nearly impossible with any other common tools.
Pings
is a tcl/tk (wish8.0) script for monitoring a list of hosts. It pops up a window showing a list of hosts. It runs pings on ay or all of the hosts and shows the responses. It can also use traceroute to discover the route to a host, and ping any or all of the hosts along the route.
Start
is a tcl mimic of the MS-Windows Start button.
SumCol
sums a column of numbers.
supplant
searches directories for files with the same name, and makes them links to an "authoritative" version. This helps eliminate the confusion and waste space caused by the "broken link" problem.
DC
produces a window with a list of TCP connections. It is updated every N seconds, and you can specify a (grep) filter to select only certain sets of connections.
DC
is a simple protype of a tcl TCP server process.
Test
is a software-test program. It runs a suite of tests, compares the results with samples of correct output, and reports failures.
DC
is a tcl wrapper for the traceroute command.`
DC
is a tcl program that maintains a central cache of the contents of URLs. Other processes use the source command to ask for URLs and get asynchronous notification when the contents arrive.
Unshar and UnpackKit
unpack a flock of shar kits. They have somewhat diferent extra goodies.
DC
unpacks a (possibly compressed) tar kit.
Upload
is a CGI script that copies files to a server's incoming-files directory. It is designed to be invoked via an HTML form or hyperlink.
WNG
is "Write to News Group", and sends one of a short list of canned responses to messages that shouldn't have been posted to the newsgroup.
DC
is a perl script that knows how to build the whatis files used by the man command.
XR
displays X resources, and helps you edit them.
XRGB
lists all the color names known to your X server, and lets you select them as foreground or background colors so you can see what they look like. It can also send the color names to a parent wish process, so it functions as a generic color chooser.
XV
is a tcl wrapper for the xv command. It includes a prototype directory-tree routine.
Xrand
produces an xterm window with random colors.
Zap
wipes out the contents of files.

Everything

Here's the full list of everything, in alphabetical order:

      Name                    Last modified       Size  Description

[DIR] Parent Directory 12-Nov-2009 12:09 - [TXT] Addr 01-Oct-2002 09:20 1k [TXT] Backup.pm 30-Apr-2005 23:21 2k [TXT] Bl 08-Mar-2000 10:24 1k [   ] Bp.sh 04-Sep-2008 13:12 1k [TXT] BrowserID1.html 28-Aug-2001 23:08 1k [TXT] CGI_Lite.pm 27-Apr-2005 17:19 26k [TXT] Colors.w 08-Mar-2000 10:56 1k [TXT] Cookie 13-Oct-2004 13:08 1k [TXT] Cookies 13-Oct-2004 13:08 1k [TXT] CountFiles 05-Nov-2002 14:55 1k [   ] Cp.sh 06-Mar-2002 09:41 1k [TXT] Cptree 20-Jan-2002 11:25 1k [TXT] Cu 22-May-1998 12:42 1k [TXT] DC 08-Mar-2000 12:09 16k [TXT] DT.pm 20-Jun-2009 20:58 1k [TXT] DateTest 01-Oct-2002 09:20 1k [TXT] Dbg.w 08-Mar-2000 12:23 1k [TXT] Deliver 10-Jun-2008 08:36 35k [TXT] ExtractFortunes 08-Mar-2000 13:48 1k [TXT] F 02-Oct-2002 09:11 5k [TXT] FRp 03-Dec-1999 14:18 1k [TXT] FakeMail 01-Sep-2004 22:29 2k [TXT] Find 03-Jun-2004 11:31 1k [TXT] FindDbg 08-Mar-2000 16:12 3k [TXT] FindDiffFiles 01-Oct-2002 09:20 3k [TXT] FindHdrFiles 02-Mar-2000 10:27 1k [TXT] FindImageFiles 02-Mar-2000 10:39 1k [TXT] FindWaste 01-Oct-2002 09:20 2k [TXT] Finda 02-Mar-2000 10:40 1k [TXT] Fln 08-Mar-2000 16:19 1k [TXT] Font3 23-Mar-2000 10:54 9k [TXT] Fonts 15-Dec-2000 15:15 5k [TXT] Fonts1 15-Dec-2000 15:15 5k [TXT] Fonts3 16-Feb-2000 14:37 9k [TXT] FromWhere 30-Sep-1999 22:12 1k [TXT] Frp 01-Oct-2002 09:20 2k [TXT] GDB 09-Mar-2000 09:46 26k [TXT] HTMLdir.pm 14-Jan-1999 16:11 2k [TXT] HTTPcon.pm 05-Oct-2005 20:08 5k [TXT] Help.w 23-Feb-2000 13:22 13k [TXT] HelpText.html 28-Aug-2001 23:08 2k [TXT] HelpWin.html 14-Aug-2005 00:26 3k [TXT] Helper 01-Oct-2002 09:20 7k [TXT] HomeDir 22-May-1998 12:42 1k [TXT] Hosts 01-Oct-2002 09:20 1k [TXT] IF 18-May-2004 16:03 9k [TXT] ISO8859-1.html 08-Nov-2000 11:51 8k [TXT] ISO8859-1.txt 19-Feb-2004 21:00 8k [TXT] Ifind 09-Mar-2000 10:23 1k [TXT] ImgPreload.html 28-Aug-2001 23:08 1k [TXT] ImgPreload1.html 10-Dec-2001 14:27 5k [TXT] Inc 15-Dec-2002 20:24 1k [TXT] Kill.aix 08-Mar-2000 10:01 1k [TXT] Kill.bsd 08-Mar-2000 10:01 1k [TXT] Kill.hpux 08-Mar-2000 10:01 1k [TXT] Kill.linux 07-Jul-2001 12:51 1k [TXT] Kill.solaris 08-Mar-2000 10:01 1k [TXT] Kill.sunos 08-Mar-2000 10:01 1k [TXT] Kill.sys5 08-Mar-2000 10:01 1k [   ] Lc.sh 06-Mar-2002 09:41 1k [TXT] Lds 27-Jun-1995 14:35 1k [TXT] Lf 27-Jun-1995 14:35 1k [TXT] Li 19-Mar-1998 15:26 1k [TXT] Lid 27-Jun-1995 14:35 1k [TXT] LinkMy 18-Jan-1993 18:25 1k [TXT] Litr 01-Apr-1998 18:54 1k [   ] Ln.sh 06-Mar-2002 09:41 1k [TXT] Lrt 16-May-1997 11:42 1k [TXT] Ls 01-Apr-1998 18:54 1k [TXT] Lsd 27-Jun-1995 14:35 1k [TXT] Lss 06-Aug-1999 12:46 1k [TXT] Ltr 01-Apr-1998 18:53 1k [TXT] Lurt 01-Apr-1998 18:54 1k [TXT] MailShars 09-Mar-2000 12:06 1k [TXT] Make 09-Mar-2000 12:09 1k [TXT] Man 09-Mar-2000 12:29 1k [TXT] Man.html 20-Mar-2000 13:57 1k [TXT] Mkdir 22-May-1998 12:43 1k [TXT] Monitor 07-Sep-1999 17:44 5k [TXT] Mrpl 01-Oct-2002 09:20 10k [TXT] MultUser 22-May-1998 12:43 10k [   ] Mv.sh 06-Mar-2002 09:41 1k [TXT] NSlookup 01-Oct-2002 09:20 1k [   ] NSlookup.sh 01-Oct-2002 09:20 1k [TXT] Netscape.cfg 02-Apr-2000 21:31 1k [TXT] OV 14-Mar-2000 10:46 2k [TXT] P 01-Oct-2002 09:20 3k [TXT] PCkbd.txt 21-Nov-2003 09:24 1k [TXT] PP 01-Oct-2002 09:20 3k [   ] PS.sh 13-Feb-1996 16:51 1k [TXT] PSP 13-Feb-1996 16:51 1k [TXT] PSPP 13-Feb-1996 16:51 1k [TXT] PSU 13-Feb-1996 16:52 1k [TXT] PSUP 13-Feb-1996 16:52 1k [TXT] PSdate 20-Nov-2000 13:13 1k [TXT] PSftr 18-Sep-2008 15:21 3k [TXT] PShdr 14-Oct-2005 13:51 2k [TXT] PU 01-Oct-2002 09:20 3k [TXT] Pc 14-Nov-1997 08:52 1k [TXT] People 07-Aug-2000 21:37 10k [TXT] Pg 18-Sep-2003 09:15 1k [TXT] Pings 17-Apr-2003 18:51 34k [TXT] Post 13-Feb-1996 16:52 1k [TXT] Pr1 23-Feb-1998 19:16 1k [TXT] Pr2 01-Oct-2002 09:00 1k [TXT] Ps.sunos 03-Dec-1999 14:08 6k [TXT] PurgeFiles 01-Oct-2002 09:20 2k [TXT] QuoteReply 16-Dec-2002 11:10 1k [TXT] RSA 01-Oct-2002 09:20 1k [TXT] Relink 01-Oct-2002 09:00 3k [TXT] ReplyHeaders 16-Dec-2002 10:45 10k [TXT] Restore 14-Mar-2000 12:32 1k [   ] Rm.sh 08-Nov-1991 14:46 1k [TXT] Rmail 01-Oct-2002 09:20 8k [TXT] Rmake 08-Jun-2008 11:36 3k [TXT] Rp 01-Oct-2002 09:20 4k [TXT] Rs 19-Jul-1993 09:16 1k [TXT] Save 14-Mar-2000 12:32 2k [TXT] Saying.cgi 15-Jan-2004 11:14 1k [TXT] Send 10-Jun-2008 08:36 35k [TXT] SendMail 01-Oct-2002 09:00 3k [   ] Source.tcl 03-Dec-1999 14:21 2k [TXT] Source.w 03-Dec-1999 14:08 1k [TXT] SplitSayings 01-Oct-2002 09:20 1k [   ] StaffSheet 14-May-1999 10:44 1k [TXT] Start 14-Mar-2000 14:15 5k [TXT] TCPlist 14-Mar-2000 19:32 7k [TXT] TCPserver.w 29-Apr-1998 09:44 1k [TXT] TCPstat 13-Nov-2000 10:22 7k [TXT] Test 01-Oct-2002 09:20 10k [TXT] Threadize 01-Oct-2002 09:20 2k [TXT] Top 29-Sep-1993 14:39 1k [TXT] TraceRoute 13-Apr-2001 13:25 16k [TXT] URLcache 03-Dec-1999 14:08 8k [TXT] URLdata.pm 03-Dec-1999 14:08 2k [TXT] URLhref.pm 26-Jul-2006 15:02 1k [TXT] URLopen.pm 27-Apr-2005 09:22 6k [TXT] URLtrim.pm 01-Apr-2003 10:43 1k [TXT] UnpackKit 13-Feb-1996 16:52 1k [TXT] Unshar 13-Feb-1996 16:52 1k [TXT] Untar 07-Nov-2002 09:30 1k [TXT] Upload 01-Oct-2002 09:20 4k [TXT] Verbose.pm 26-Jan-2000 09:05 1k [TXT] Verbose.w 25-Sep-2002 17:08 2k [TXT] Vopt.pm 12-Jun-2009 22:15 2k [TXT] Vrp 01-Oct-2002 09:20 2k [TXT] WNG 01-Oct-2002 09:20 9k [TXT] Whatis 01-Oct-2002 09:20 1k [TXT] XR 05-Nov-1997 15:24 8k [TXT] XRGB 05-Nov-1997 15:25 3k [TXT] XV 16-Mar-2000 20:10 2k [TXT] Xcgi 01-Oct-2002 09:20 2k [TXT] Xdefaults-gv 23-Oct-2000 14:05 1k [TXT] Xdefaults-kendy 23-Oct-2000 14:05 2k [TXT] Xdefaults-netscape 23-Oct-2000 14:05 1k [TXT] Xdefaults-tiel 23-Oct-2000 14:05 3k [TXT] Xdefaults-xterm 23-Oct-2000 14:05 1k [TXT] Xrand 27-Feb-2004 11:41 1k [TXT] Xsu 02-Oct-1995 13:10 1k [TXT] Xterm 04-Apr-1998 12:00 1k [TXT] abc 02-Jun-2004 17:57 14k [TXT] abc+3 17-Aug-1997 18:24 1k [TXT] abc-3 17-Aug-1997 18:24 1k [TXT] abc2bars 03-Dec-1999 14:08 3k [TXT] abc2code 03-Dec-1999 14:08 3k [TXT] abc2html 03-Dec-1999 14:08 1k [TXT] abcCode.pm 10-Sep-2008 12:15 14k [TXT] abcCode.pm- 09-Dec-2003 16:59 12k [TXT] abcDesc 25-Sep-2005 21:31 1k [TXT] abc_netscape 03-Dec-1999 14:08 3k [TXT] abcgui 02-Jun-2004 17:57 14k [TXT] abcjoin 15-Aug-2006 14:14 6k [TXT] abcmedley 31-Jul-2008 11:25 4k [TXT] abcpar 16-Mar-2000 20:21 2k [TXT] abcprog 03-Dec-1999 14:08 1k [TXT] abcsplit 21-Sep-2005 20:38 8k [TXT] abctable 03-Dec-1999 14:08 22k [TXT] abctr 09-Dec-2005 12:53 8k [TXT] abctri 23-May-2003 11:53 2k [TXT] abctrn 17-Aug-1997 18:26 4k [TXT] abctrs 17-Aug-1997 18:26 4k [TXT] ae 13-Oct-2004 13:08 1k [TXT] ae.cgi 13-Oct-2004 13:08 1k [TXT] anon.ftp 20-Sep-1995 15:19 4k [TXT] b-c 07-Mar-1996 10:28 1k [TXT] b64d 19-Mar-2004 17:31 1k [TXT] bashenv 14-Jul-2000 16:25 1k [TXT] bashrc-linux 30-May-2004 14:37 1k [TXT] bmod 13-Feb-1996 16:52 1k [TXT] bmp2gif 01-Oct-2002 09:20 1k [TXT] check.c 28-Jun-2002 14:02 22k [TXT] chrset 03-Dec-1999 14:21 7k [TXT] cpdir 24-May-2005 11:47 3k [TXT] crp 28-Jan-1999 21:54 2k [TXT] cshenv 14-Jul-2000 16:25 1k [TXT] cshrc-FreeBSD 14-Sep-2009 11:03 3k [TXT] dos2unix 01-Oct-2002 09:20 1k [TXT] exrc-OSX 31-Dec-1969 20:09 1k [TXT] exrc-linux 21-Jun-2004 10:37 1k [TXT] frMorse 14-Nov-2005 14:34 3k [TXT] frp 28-Jan-1999 21:54 2k [TXT] ge 20-Feb-2004 17:22 1k [TXT] gifdemo 06-May-2004 21:55 6k [TXT] giftest 05-Nov-1997 15:36 1k [TXT] gmtime 17-May-2005 12:39 1k [   ] gs.sh 13-Feb-1996 16:52 1k [TXT] hummingbird.html 15-Mar-2001 19:50 1k [DIR] img/ 06-Mar-2003 22:41 - [   ] inc.sh 29-Sep-1993 14:38 1k [DIR] js/ 22-Nov-2000 09:33 - [TXT] kderc-linux 29-Dec-2006 15:32 1k [TXT] keyboard.txt 15-Oct-1999 16:15 1k [TXT] kill.freebsd 08-Mar-2000 10:01 1k [TXT] kshenv 14-Jul-2000 16:25 1k [TXT] lndir 24-May-2005 11:47 3k [TXT] loadenv 14-Jul-2000 16:25 1k [TXT] localtime 01-Oct-2002 09:20 1k [TXT] lt 01-Oct-2002 09:20 1k [TXT] m2h 13-Oct-2004 21:39 5k [TXT] mac2unix 01-Oct-2002 09:20 1k [TXT] mailto.html 08-Mar-2000 10:01 1k [TXT] mfl 01-Oct-2002 09:20 2k [TXT] mkdep 06-Dec-1999 11:58 2k [TXT] pctbar 31-Mar-2000 14:01 1k [TXT] proto.d 01-May-2002 09:06 1k [TXT] proto.html 03-Nov-2005 18:22 1k [   ] ranlib.sh 22-May-1998 12:43 1k [TXT] rename 01-Oct-2002 09:21 1k [TXT] rentry.w 04-Jan-2001 14:17 1k [TXT] rp 28-Jan-1999 21:54 2k [   ] scan.sh 29-Sep-1993 14:39 1k [   ] show.sh 29-Sep-1993 14:39 1k [TXT] stripman 01-Oct-2002 09:21 1k [TXT] subst 02-Jun-2000 10:32 3k [TXT] supplant 01-Oct-2002 09:21 3k [TXT] tarbkup 08-Nov-2005 12:28 1k [TXT] tcpproxy 08-Mar-2000 10:01 64k [TXT] tcshenv 14-Jul-2000 16:25 1k [TXT] tcshrc-FreeBSD 14-Sep-2009 11:03 3k [TXT] tcshrc-OSX 07-May-2005 17:12 3k [TXT] tcshrc-SunOS 30-Mar-2000 09:42 6k [TXT] tcshrc-linux 22-Jul-2005 13:38 7k [TXT] tkfontscale.w 04-Jan-2001 14:09 1k [   ] totitlebar 30-Mar-2000 13:51 1k [TXT] trim 05-Apr-2006 15:28 1k [TXT] ts 02-Jan-2001 15:22 1k [TXT] unix2dos 01-Oct-2002 09:21 1k [TXT] unix2mac 01-Oct-2002 09:21 1k [TXT] ut 17-May-2005 12:39 1k [TXT] vrp 28-Jan-1999 21:54 2k [TXT] w3cat 05-Oct-2005 20:09 12k [TXT] w3ld 01-Oct-2002 09:21 21k [TXT] w3post 13-Oct-2004 13:09 7k

This directory contains random "shell scripts" for various shells.  It
is  intended  to  be included in your search path.  Note that the term
"shell" is used generously, and includes things like perl,  fsh,  etc.
There  are  some  subdirectories  for  specific  shells, and there are
likely to be adjacent directories with names like "sh.bsd" for scripts
that require the bsd version of the Bourne shell.