bash_-_scripts:tgrep
Differences
This shows you the differences between two versions of the page.
bash_-_scripts:tgrep [2016/11/09 12:17] – created peter | bash_-_scripts:tgrep [2019/11/29 11:16] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - tgrep ====== | ||
- | |||
- | **tgrep** searches for character strings in each file, in a file tree. | ||
- | |||
- | |||
- | ===== Usage ===== | ||
- | |||
- | <code bash> | ||
- | tgrep [-c|-h] string [file ...] | ||
- | </ | ||
- | |||
- | |||
- | ===== Code ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | # | ||
- | # @(#) tgrep v1.0 Search for a string in a tree. | ||
- | |||
- | OPT="" | ||
- | |||
- | for ARG in $@ | ||
- | do | ||
- | if [ "`echo $ARG|cut -c1`" = " | ||
- | then case $ARG in | ||
- | -c) OPT=" | ||
- | | ||
- | -h) OPT=" | ||
- | | ||
- | *) echo "$O: incorrect argument" | ||
- | echo " | ||
- | exit 1;; | ||
- | esac | ||
- | fi | ||
- | done | ||
- | |||
- | case $# in | ||
- | 0) echo "$O: argument error" | ||
- | echo " | ||
- | exit 2 | ||
- | ;; | ||
- | 1) while read FILE | ||
- | do | ||
- | grep -y " | ||
- | done | ||
- | ;; | ||
- | *) STRING=$1; shift | ||
- | eval find " | ||
- | do | ||
- | grep -y " | ||
- | done | ||
- | ;; | ||
- | esac | ||
- | </ | ||
- | |||
- | ===== Example Usage ===== | ||
- | |||
- | <code bash> | ||
- | tgrep " | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | tgrep unix $HOME | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | tgrep -c " | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | find /usr/src -name " | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | tgrep "| more" `find . -type f -print` | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | tgrep trap /bin /usr/bin /etc | ||
- | </ | ||
- | |||
- | |||
- | |||
- | <code bash> | ||
- | grep " | ||
- | </ | ||
- | |||
- | and | ||
- | |||
- | <code bash> | ||
- | find " | ||
- | do | ||
- | grep " | ||
- | done | ||
- | </ | ||
bash_-_scripts/tgrep.1478693840.txt.gz · Last modified: 2020/07/15 09:30 (external edit)