Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Thank you so much
- hey
- Thanks mate, Just what I was looking for. It seemed to be a different way of doing things in Leopard than previous versions. Cheers, Mitch
- thanks, i couldnt remember.
- I did this in Garage band, but if forced me to trip the song to 8 seconds in order to send it to itunes ringtones - any ideas on this? Using the new 3GS.
4 years ago
It is one of those days.. I spent almost an hour for this.....
Best, peace...
Hal
4 years ago
4 years ago
3 years ago
It gives output like this:
/users/hattb/shirley_test_file
The -type f switch tells it to only look in text files.
If you want to redirect the output to a file:
find /users/hattb -type f -name "*" -exec grep -ls sqlload {} ; >out.txt
Hope this helps,
Shirley
3 years ago
2 years ago
is easier to type :-)
xargs rocks.
2 years ago
for i in `find <path>`; do grep <pattern> $i; done6 months ago