Re: Finding a lost PYTHONPATH with find

2006-06-01 Thread John J. Lee
Edward Elliott <[EMAIL PROTECTED]> writes: > John J. Lee wrote: > > > find / -maxdepth 3 -size -100k -type f -exec grep -sli pythonpath '{}' \; > > > > > > The minus in '-100k' (meaning "less than 100k") seems to be > > undocumented, at least on my system. > > It should be standard in linux

Re: Finding a lost PYTHONPATH with find

2006-05-29 Thread Edward Elliott
John J. Lee wrote: > find / -maxdepth 3 -size -100k -type f -exec grep -sli pythonpath '{}' \; > > > The minus in '-100k' (meaning "less than 100k") seems to be > undocumented, at least on my system. It should be standard in linux man pages, can't speak for other unices: TESTS Nume

Finding a lost PYTHONPATH with find

2006-05-28 Thread John J. Lee
OK, this is really a reminder to myself next time I forget where I set my PYTHONPATH and forget exactly how to invoke the GNU "find" command ;-) Hope somebody else finds it useful too find / -maxdepth 3 -size -100k -type f -exec grep -sli pythonpath '{}' \; The minus in '-100k' (meaning "less t