bash_-_scripts:paths
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash_-_scripts:paths [2016/11/09 14:32] – created peter | bash_-_scripts:paths [2019/11/29 11:06] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - paths ====== | ||
- | |||
- | ===== 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 | ||
- | </ | ||
- | |||
- | |||
- | |||
bash_-_scripts/paths.1478701964.txt.gz · Last modified: 2020/07/15 09:30 (external edit)