User Tools

Site Tools


bash_-_scripts:paths

This is an old revision of the document!


Bash - Scripts - paths

Usage

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

#!/bin/bash
#
# @(#) paths v1.0 Path locator with special options.
#
FORMAT="path"
 
for ARG in $@
do
  if [ '`echo $ARG | cut -c1`" = "-" ]
  then case $ARG in
    -l)  FORMAT="ls"
         shift;;
    -s)  FORMAT="set"
         set "1";;
     *)  echo $0: arg error"                        >&2
         echo "usage: $0 [-l] [-s] file [file ...]" >&2
         exit 1;;
    esac
  fi
done
 
IFS="${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 "\n:::::::::::::::::::"
             echo "$DIR"
             echo "::::::::::::::::::::"
             ls -al $DIR | grep "^[^ ]*s[^ ]*";;
    esac
  done
done

Example Usage

paths -l ed ex vi
bash_-_scripts/paths.1478701964.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki