Created
August 29, 2019 10:34
-
-
Save jiminald/e2a9af63fd4f3a99bfb8976f0dd3c6c6 to your computer and use it in GitHub Desktop.
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 characters
| # Replace 23 with the line number your looking for | |
| for file in $(grep -r -I -l .); do | |
| awk 'FNR==23 {print FILENAME, $0}' "$file" >> ./output.txt; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment