Help for this page

Select Code to Download


  1. or download this
    $ time ./wc.py wc.pl wc.py large.txt
         21      58     494 wc.pl
    ...
    real    0m4.484s
    user    0m4.186s
    sys     0m0.093s
    
  2. or download this
    #!/usr/bin/python
    import sys
    ...
        Tchars += chars
    if len(sys.argv) > 2:
        print "%7d %7d %7d total" % (Tlines, Twords, Tchars)
    
  3. or download this
    $ time ./wc.py wc.pl wc.py large.txt
         21      58     494 wc.pl
    ...
    real    0m6.157s
    user    0m6.046s
    sys     0m0.124s