Changes between Version 18 and Version 19 of Wisdom/Shell


Ignore:
Timestamp:
03/14/13 19:34:38 (13 years ago)
Author:
dorazio@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Wisdom/Shell

    v18 v19  
    55You can do a lot of shell scripting type things in python with the os module:
    66[http://docs.python.org/library/os.html]
     7
     8To sort everything in a directory by size in human readable format (e.g. 8G, 1M, 12K)
     9
     10  $ du | sort -n | cut -f2- | xargs du -hs
    711
    812To set the modified date to today for everything in a directory and all its subdirectories do