bash_-_scripts:kind
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
bash_-_scripts:kind [2016/11/09 17:05] – peter | bash_-_scripts:kind [2019/11/29 10:59] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - kind ====== | ||
- | Displays the names of all files in the specified directory with the specified type. If you do not specify any type it defaults to text files. | ||
- | |||
- | ===== Usage ===== | ||
- | |||
- | <code bash> | ||
- | kind [-a] [-d] [-t] [-x] [file...] | ||
- | </ | ||
- | |||
- | |||
- | |||
- | ===== Code ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | # | ||
- | # @(#) kind v1.0 | ||
- | # | ||
- | |||
- | if [ $# -gt 0 ] | ||
- | then if [ `echo $1 | cut -c1` = " | ||
- | then case #1 in | ||
- | -a) | ||
- | shift;; | ||
- | -d) | ||
- | shift;; | ||
- | -t) | ||
- | shift;; | ||
- | -x) | ||
- | shift;; | ||
- | | ||
- | echo " | ||
- | echo " | ||
- | echo " | ||
- | echo " | ||
- | echo " | ||
- | echo " | ||
- | exit 1;; | ||
- | esac | ||
- | fi | ||
- | fi | ||
- | |||
- | : ${KIND: | ||
- | |||
- | case $# in | ||
- | 0) while read FILE | ||
- | do | ||
- | file $FILE | fgrep $KIND | cut -d: -f1 | ||
- | | ||
- | *) file $@ | fgrep $KIND | cut -d: -f1;; | ||
- | esac | ||
- | </ | ||
- | |||
- | FILE contains the file names as they are read from stdin (Standard input). | ||
- | KIND contains the text string that defines the type of file. | ||
- | |||
- | |||
- | ===== Examples ===== | ||
- | |||
- | Display all text files in the directory /etc. | ||
- | |||
- | <code bash> | ||
- | more `kind /etc/*` | ||
- | </ | ||
- | |||
- | |||
- | That is actually hatched a list of all data files. And if I have done the following sequence of commands **cd /etc** and **kind -d ***. | ||
- | |||
- | <code bash> | ||
- | kind -d /etc/* | ||
- | </ | ||
- | |||
- | Possible Result | ||
- | |||
- | < | ||
- | /etc/mnttab | ||
- | /etc/utmp | ||
- | /etc/wtmp | ||
- | </ | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | <code bash> | ||
- | od `kind -d /etc/*` | ||
- | </ | ||
- | |||
- | |||
- | |||
- | <code bash> | ||
- | ll `sh -x kind -a /lib/*` | m | ||
- | </ | ||
- | |||
- | |||
- | <code bash> | ||
- | find / -print | kind -x | while read FILE | ||
- | > do | ||
- | > | ||
- | > done > / | ||
- | </ |
bash_-_scripts/kind.1478711124.txt.gz · Last modified: 2020/07/15 09:30 (external edit)