Skip to content

Commit

Permalink
Correct tag grep
Browse files Browse the repository at this point in the history
The first way attempted only worked in bash.  Changed to use perl regex with grep.
  • Loading branch information
underwoo committed Mar 12, 2020
1 parent 538fe39 commit ad999da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ftn_tab_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
# * .inc .INC
# * .fh .FH
# * .for .FOR
find -O3 . -iregex ".*\.\(f\(90\)?\|inc\|fh\|for\)$" -exec grep -l $'\t' {} \;
find -O3 . -iregex ".*\.\(f\(90\)?\|inc\|fh\|for\)$" -exec grep -Pl '\t' {} \;

0 comments on commit ad999da

Please sign in to comment.