[Pharo-users] Re: searching for pharo code on disk

2023-03-21 Thread Gabriel Cotelli
Monticello files AFAIR are zip files. So maybe you can extract them and run grep against the content On Tue, Mar 21, 2023, 12:55 Siemen Baader wrote: > Hi, > > I'm looking for some code I wrote maybe 7 years ago. A web scraper that > collected data from a specific web shop. It must be somewhere

[Pharo-users] Re: searching for pharo code on disk

2023-03-21 Thread Yanni Chiu
May have some syntax wrong, but something like: find . -name *.changes -exec “grep -i webscrap “ Check the manpage of find command for exec examples. The -i on grep ignores uppercase/lowercase differences. HTH On Tue, Mar 21, 2023 at 11:55 AM Siemen Baader wrote: > Hi, > > I'm looking for som