Created
August 19, 2011 19:13
-
-
Save moneal/1157728 to your computer and use it in GitHub Desktop.
Print line 58 in the format "<filename>:<line number> <line>" for all inc files
This file contains 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 characters
find . -type f -name "*.inc" -exec awk 'NR==58 {print FILENAME ":" NR ": " $0 }' {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment