Guido van Rossum | 8b83bce | 1992-03-02 16:15:12 +0000 | [diff] [blame] | 1 | This directory contains a collection of executable Python scripts. |
| 2 | |
| 3 | Some perform Python housekeeping jobs (e.g., converting old syntax or |
| 4 | generating tags files), others are useful UNIX tools, are some are |
| 5 | just cute demos (e.g., pi.py). |
| 6 | |
| 7 | A number of these of these deserve a link in your bin directory. All |
| 8 | deserve study if you want to learn Python programming. |
| 9 | |
| 10 | Table of contents: |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 11 | |
| 12 | byteyears.py Print product of a file's size and age |
Guido van Rossum | 488b7d9 | 1991-12-24 13:55:16 +0000 | [diff] [blame] | 13 | checkpyc.py Check presence and validity of ".pyc" files |
Guido van Rossum | 9f7a956 | 1991-12-26 12:59:17 +0000 | [diff] [blame] | 14 | classfix.py Convert old class syntax to new |
Guido van Rossum | 488b7d9 | 1991-12-24 13:55:16 +0000 | [diff] [blame] | 15 | copytime.py Copy one file's atime and mtime to another |
Guido van Rossum | 8b83bce | 1992-03-02 16:15:12 +0000 | [diff] [blame] | 16 | h2py.py Translate #define's into Python assignments |
| 17 | dutree.py Format du(1) output as a tree sorted by size |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 18 | eptags.py Create Emacs TAGS file for Python modules |
| 19 | fact.py Factorize numbers |
Guido van Rossum | 8b83bce | 1992-03-02 16:15:12 +0000 | [diff] [blame] | 20 | findlinksto.py Recursively find symbolic links to a given path prefix |
Guido van Rossum | 6a0e228 | 1993-06-14 08:47:54 +0000 | [diff] [blame^] | 21 | fixps.py Fix Python scripts' first line (if #!) |
| 22 | fixcid.py Massive identifier substitution on C source files |
Guido van Rossum | 9db0c1f | 1993-04-01 20:50:12 +0000 | [diff] [blame] | 23 | freeze.py Convert a Python script into a free-standing binary |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 24 | from.py Summarize mailbox |
Guido van Rossum | 8b83bce | 1992-03-02 16:15:12 +0000 | [diff] [blame] | 25 | linktree.py Make a copy of a tree with links to original files |
| 26 | lll.py Find and list symbolic links in current directory |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 27 | lpwatch.py Watch BSD line printer queues |
Guido van Rossum | 9db0c1f | 1993-04-01 20:50:12 +0000 | [diff] [blame] | 28 | methfix.py Fix old method syntax def f(self, (a1, ..., aN)): |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 29 | mkreal.py Turn a symbolic link into a real file or directory |
| 30 | objgraph.py Print object graph from nm output on a library |
| 31 | pdeps.py Print dependencies between Python modules |
Guido van Rossum | 8b83bce | 1992-03-02 16:15:12 +0000 | [diff] [blame] | 32 | pi.py Print all digits of pi -- given enough time and memory |
Guido van Rossum | c2b2a04 | 1992-08-10 10:43:07 +0000 | [diff] [blame] | 33 | pp.py Emulate some Perl command line options |
Guido van Rossum | ec758ea | 1991-06-04 20:36:54 +0000 | [diff] [blame] | 34 | primes.py Print prime numbers |
| 35 | ptags.py Create vi tags file for Python modules |
| 36 | suff.py Sort a list of files by suffix |
| 37 | which.py Find a program in $PATH |
| 38 | xxci.py Wrapper for rcsdiff and ci |