IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New Ahh. You need to inline some replacments
find . -type f -print | grep -v -e stuff_i_dont_want | xargs grep -l what_im_looking_for
Will never work properly due to "typical delimiters honored" in *NIX/Linux

Basically whe I know there are funky things going on I do an in-line replacement, this specific one should help you.

find . -type f -print | sed -es/\\ /\\\\\\\\\\ /g | grep -v -e stuff_i_dont_want | xargs grep -l what_im_looking_for

Basically you have to use a double escape on a double escape to get it right for commands further down the line.

Heres hoping.
--
[link|mailto:greg@gregfolkert.net|greg],
[link|http://www.iwethey.org/ed_curry|REMEMBER ED CURRY!] @ iwethey
Freedom is not FREE.
Yeah, but 10s of Trillions of US Dollars?
SELECT * FROM scog WHERE ethics > 0;

0 rows returned.
Collapse Edited by folkert March 31, 2006, 06:54:59 PM EST
Ahh. You need to inline some replacments
find . -type f -print | grep -v -e stuff_i_dont_want | xargs grep -l what_im_looking_for
Will never work properly due to "typical delimiters honored" in *NIX/Linux

Basically whe I know there are funky things going on I do an in-line replacement, this specific one should help you.

find . -type f -print | sed -es/\ /\\\ /g | grep -v -e stuff_i_dont_want | xargs grep -l what_im_looking_for

Basically you have to use a double escape on a double escape to get it right for commands further down the line.

Heres hoping.
--
[link|mailto:greg@gregfolkert.net|greg],
[link|http://www.iwethey.org/ed_curry|REMEMBER ED CURRY!] @ iwethey
Freedom is not FREE.
Yeah, but 10s of Trillions of US Dollars?
SELECT * FROM scog WHERE ethics > 0;

0 rows returned.
     Need help with a find/grep - (Yendor) - (4)
         Ahh. You need to inline some replacments - (folkert)
         [ ] is your friend? -NT - (ChrisR)
         Use the -r switch to grep -NT - (ben_tilly) - (1)
             Yeah, I could... - (Yendor)

Zeptotechnology is just around the corner!
32 ms