bash_-_scripts:paths
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
bash_-_scripts:paths [2016/11/09 15:44] – peter | bash_-_scripts:paths [2019/11/29 11:06] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - paths ====== | ||
- | **paths** displays the directory where the file is located | ||
- | |||
- | <WRAP todo> | ||
- | ... provides name of the file in a long format or looking for files with the bit Polish | ||
- | zovatelskogo identifier (setuid bit files) in the directory specified. | ||
- | </ | ||
- | |||
- | It uses the PATH environment variable which holds directory names, separated by a colon (: | ||
- | |||
- | Paths has three main function. | ||
- | |||
- | The syntax of the call is a little different for different options. | ||
- | |||
- | paths [-l] file [file ...] | ||
- | |||
- | as, for example, in the commands "paths ls who date" or "paths -l ll" | ||
- | |||
- | For Search files with set user ID (setuid files) do not need to specify the file names on the command line. It should be: | ||
- | |||
- | paths -s | ||
- | |||
- | Format setuid and output formats of the route are mutually exclusive conductive, since it is assumed that you want to learn the computer, | ||
- | What and where are the files, rather than to guess file names. | ||
- | |||
- | |||
- | |||
- | ===== Usage ===== | ||
- | |||
- | <code bash> | ||
- | paths [-l] [-s] file [file ...] | ||
- | </ | ||
- | |||
- | ARG contains each command-line argument | ||
- | DIR element with a directory name in the PATH | ||
- | FILE contains the name of each file on the command line | ||
- | FORMAT Type the desired output format | ||
- | IFS shell variable, the field separator | ||
- | PATH shell variable, the path to the executable directory modules. | ||
- | |||
- | ===== Code ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | # | ||
- | # @(#) paths v1.0 Path locator with special options. | ||
- | # | ||
- | FORMAT=" | ||
- | |||
- | for ARG in $@ | ||
- | do | ||
- | if [ '`echo $ARG | cut -c1`" = " | ||
- | then case $ARG in | ||
- | -l) FORMAT=" | ||
- | | ||
- | -s) FORMAT=" | ||
- | set " | ||
- | | ||
- | echo " | ||
- | exit 1;; | ||
- | esac | ||
- | fi | ||
- | done | ||
- | |||
- | IFS=" | ||
- | |||
- | for FILE in $@ | ||
- | do | ||
- | for DIR in $PATH | ||
- | do | ||
- | case $FORMAT in | ||
- | path) if [ -f $DIR/$FILE ] | ||
- | then echo $DIR/$FILE | ||
- | fi;; | ||
- | ls) if [ -f $DIR/$FILE ] | ||
- | then ls -l $DIR/$FILE | ||
- | fi;; | ||
- | set) echo " | ||
- | echo " | ||
- | echo "::::::::::::::::::::" | ||
- | ls -al $DIR | grep "^[^ ]*s[^ ]*";; | ||
- | esac | ||
- | done | ||
- | done | ||
- | </ | ||
- | |||
- | |||
- | ===== Example Usage ===== | ||
- | |||
- | <code bash> | ||
- | paths -l ed ex vi | ||
- | </ | ||
- | |||
- | |||
- | Search route commands ls, more, who, paths. | ||
- | |||
- | <code bash> | ||
- | paths ls more who paths | ||
- | </ | ||
- | |||
- | Result | ||
- | |||
- | < | ||
- | /bin/ls | ||
- | / | ||
- | /bin/who | ||
- | / | ||
- | </ | ||
- | |||
- | |||
- | If your PATH variable includes the directory /etc, then this example will work. If not, the first two files are not found. | ||
- | |||
- | <code bash> | ||
- | more `paths gettydefs termcap paths` | ||
- | </ | ||
- | |||
- | Result | ||
- | |||
- | < | ||
- | more / | ||
- | </ | ||
- | |||
- | with the full path name of each file. This example illustrates how you can make the command **paths** do all the work of finding and using files that you want to see. | ||
- | |||
- | |||
- | |||
- | In this example, the output file names ll in the long format, that finds path. (We will be presenting our version of the command ll more | ||
- | later in this chapter.) As in the previous case, is generated first etsya information about the route, then it is placed in the command line, and ll then run the command. | ||
- | |||
- | <code bash> | ||
- | ll `paths ll` | ||
- | </ | ||
- | |||
- | |||
- | In this example, the generated path name of the command file paths and transmitted m program which uses the more command to print. (M command file we will show you later.) | ||
- | |||
- | <code bash> | ||
- | m `paths paths` | ||
- | </ |
bash_-_scripts/paths.1478706260.txt.gz · Last modified: 2020/07/15 09:30 (external edit)