Created
December 7, 2010 16:15
-
-
Save l0b0/731975 to your computer and use it in GitHub Desktop.
Revisions
-
l0b0 revised this gist
Dec 7, 2010 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,5 +2,5 @@ find . -maxdepth 1 -print0 | \ sort --zero-terminated | \ while IFS= read -rd $'\0' path do grep "$(basename -- "${path:2}")" -- Makefile >/dev/null || echo "Could not find $path" done -
l0b0 created this gist
Dec 7, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ find . -maxdepth 1 -print0 | \ sort --zero-terminated | \ while IFS= read -rd $'\0' path do grep "$(basename -- "${path:2}")" Makefile >/dev/null || echo "Could not find $path" done