Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
beambot
on June 26, 2011
|
parent
|
context
|
favorite
| on:
Things you (probably) didn't know about xargs
I use xargs for the find + rm cases he mentions. However, if you just want the file names containing the words import, I rely exclusively on grep:
grep -r -l import *.py
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
grep -r -l import *.py