On 5/09/2012 6:13 a.m., Gregory Szorc wrote:
$ hg status -u | grep .egg-info | xargs rm -rf $ git ls-files -o '*.egg-info*' | xargs rm -rf
Those of you on Windows will notice this doesn't work, thanks to Windows-style paths. The following will:
$ hg status -un | grep .egg-info | sed 's/\\/\//g' | xargs rm -rf $ git ls-files -o '*.egg-info*' | sed 's/\\/\//g' | xargs rm -rf - Blair _______________________________________________ dev-platform mailing list [email protected] https://lists.mozilla.org/listinfo/dev-platform

