bash_-_scripts:thead
Differences
This shows you the differences between two versions of the page.
bash_-_scripts:thead [2016/11/09 12:01] – created peter | bash_-_scripts:thead [2019/11/29 11:17] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - thead ====== | ||
- | |||
- | **thead** prints the first few lines of text files that are located in this the file tree. | ||
- | |||
- | The first few lines of a file can provide enough information to identify the contents of the file. | ||
- | |||
- | A full list of filenames can be piped to thead. | ||
- | |||
- | ===== Usage ===== | ||
- | |||
- | <code bash> | ||
- | thead [dir...] | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | <code bash> | ||
- | find $HOME/src -name " | ||
- | </ | ||
- | |||
- | |||
- | ===== Code ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | # | ||
- | # @(#) thead v1.0 Prints header of files in tree. | ||
- | |||
- | if [ "`echo $1|cut -c1`" = " | ||
- | then echo "$0: arg error" | ||
- | echo " | ||
- | exit 1 | ||
- | fi | ||
- | |||
- | case $# in | ||
- | | ||
- | do | ||
- | if file $FILE | fgrep text >/ | ||
- | | ||
- | echo " $FILE" | ||
- | echo " | ||
- | head -15 $FILE | ||
- | fi | ||
- | | ||
- | *) for NAME in $* | ||
- | do | ||
- | find $NAME -type f -print | sort | wile read FILE | ||
- | do | ||
- | if file $FILE | fgrep text >/ | ||
- | | ||
- | echo " $FILE" | ||
- | echo " | ||
- | head -15 $FILE | ||
- | fi | ||
- | done | ||
- | done;; | ||
- | esac | ||
- | </ | ||
- | |||
- | |||
- | ===== Example Usage ===== | ||
- | |||
- | <code bash> | ||
- | thead $HOME | ||
- | </ | ||
- | |||
- | |||
- | <code bash> | ||
- | find $HOME -name " | ||
- | </ | ||
- | |||
- | |||
- | |||
- | ===== Example Usage ===== | ||
- | |||
- | <code bash> | ||
- | thead /etc | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | thead / | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | find $HOME -ctime 0 -print | thead | ||
- | </ | ||
- | |||
- | <code bash> | ||
- | for NAME in 'who | sed " | ||
- | do | ||
- | done | ||
- | </ | ||
- | |||
- | |||
- | |||
- | <code bash> | ||
- | find $HOME -name " | ||
- | </ | ||
- | |||
- | and | ||
- | |||
- | <code bash> | ||
- | find $HOME -name " | ||
- | </ | ||
bash_-_scripts/thead.1478692887.txt.gz · Last modified: 2020/07/15 09:30 (external edit)