Changes between Version 18 and Version 19 of Wisdom/Shell
- Timestamp:
- 03/14/13 19:34:38 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Wisdom/Shell
v18 v19 5 5 You can do a lot of shell scripting type things in python with the os module: 6 6 [http://docs.python.org/library/os.html] 7 8 To 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 7 11 8 12 To set the modified date to today for everything in a directory and all its subdirectories do
