Changes between Version 8 and Version 9 of CookBookScripts
- Timestamp:
- Jul 21, 2006, 10:37:58 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBookScripts
v8 v9 9 9 clean_django -- a one liner that is useful when updating versions 10 10 {{{ 11 find django_src/ -type f -name "*.pyc" - exec rm -f {} \;11 find django_src/ -type f -name "*.pyc" -print0 | xargs -0 rm 12 12 }}} 13 13