View previous topic
::
View next topic
|
Author |
Message |
ramon fincken Site's programmer
 Get a free globally recognized avatar It's free!
Joined: 03 Aug 2007 Posts: 412 Location: A'dam/Diemen, The Netherlands
|
Posted: Fri Sep 05, 2014 1:45 pm Post subject: [grep][find] Find all files with my name AND a "TODO" somewhere in the code |
|
|
I was looking for a way to query all (php) files which did have my name (fincken) somewhere AND a "TODO" comment somewhere.
I posted my question on stackexchange yesterday:
http://stackoverflow.com/questions/2566...2-strings/
Getting a list of files:
Code: | grep -Rl --include="*php" "TODO" * | xargs grep -il "fincken" |
Getting a list of files with every line of code having TODO in it:
Code: | find -name '*.php' | xargs grep -il 'fincken' | xargs grep -il 'todo' |xargs grep -in -e 'todo' -e 'fincken' |
|
|
Back to top |
|
 |
Google adsense Advertisement
|
Posted: Fri Sep 05, 2014 1:45 pm Post subject: [grep][find] Find all files with my name AND a "TODO" somewhere in the code |
|
|
Advertisement
|
|
Back to top |
|
 |
GravityForms Advertisement
|
Posted: Fri Sep 05, 2014 1:45 pm Post subject: [grep][find] Find all files with my name AND a "TODO" somewhere in the code |
|
|
Advertisement
 |
|
Back to top |
|
 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|