dcantrell / pycoreutils

Python implementation of basic Unix utilities, modeled to support GNU coreutils features.

This URL has Read+Write access

pycoreutils / README
100644 16 lines (11 sloc) 0.513 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pycoreutils
Python re-implementation of GNU coreutils
 
WHY?
Why not? Could be useful to someone. Maybe the PyOS project.
 
DEVELOPMENT
Put the drivers for the commands in src/. These should contain a main()
function and do the argument processing. Put the core functionality for
the program in a pycoreutils module and import it in the driver.
 
To test drivers, make sure you set a PYTHONPATH environment variable so
that python can find the pycoreutils modules in this directory:
 
   export PYTHONPATH=$(pwd)