Reference no: EM13948117
How would I write a shell script to locate executable files? This script takes a list of file names from the command line and determines which would be executed had these names been given as commands.
The search path should be based only on the user's PATH environment variable. I don't want to use use the Unix which command, the ksh whence (type) command, or the bash type command.
The script should find only the first occurrence of the "file". If the file is not found, the script should print an error message that the file was not found in the user's path. (Both the filename and the users path should be printed.)
If the first parameter is '-a', then the script should print all occurrences of the executable file in the user's path. Again if the file was not on the path, an error message should be displayed.
I also don't want to use temporary files.
The shell variable PATH defines the search path for the directory containing the command. Alternative directory names are separated by a colon (:). The current directory can be specified by two or more adjacent colons, or by a colon at the beginning or end of the path list.
If the command name contains a / then the search path is not used. Otherwise, each directory in the path is searched for an executable file.
usage: mywhich [-a] command ....
For example:
prompt> mywhich ls
/bin/ls
prompt> mywhich -a cc
/bin/cc
/usr/ucb/cc
prompt> mywhich ./mywhich
./mywhich
prompt> mywhich fooblar
fooblar not found
prompt> mywhich ksh sh csh bash
/usr/bin/ksh
/bin/sh
/bin/csh
/usr/local/bin/bash
Digital transformation for the news paper industry systems
: Demonstrate effective communication by composing writing that communicates ideas, meaning and/or argument in a format that broadly follows conventions in the information systems field.
|
The relatively homogeneous-enduring divisions in a society
: Gordon Jones is considering purchasing a computer from Best Buy. He has created a scale for rating eight different computers on three different characteristics. He plans to short-list only those computers, that score at least a seven on his scale ..
|
Determining the fluorescence and phosphorescence
: 1. (a) In your own words describe briefly the phenomenon of luminescence. (b) What is the distinction between fluorescence and phosphorescence?
|
Are all foods labeled natural in the same way
: Do you think the food industry in general has equivocated on food labeling? Are all foods labeled natural in the same way? Has modern society subverted the concept of nature?
|
How would i write a shell script to locate executable files
: How would I write a shell script to locate executable files? This script takes a list of file names from the command line and determines which would be executed had these names been given as commands.
|
Compute the mce for the given product
: Compute the MCE for this product. Discuss how lean improvements can help improve this efficiency measure. Is this a lag or a lead measure? If lag, what would be some lead measures that would affect this measure?
|
Opacity and translucency in insulators
: 1. Briefly explain what determines the characteristic color of (a) a metal and (b) a transparent nonmetal. 2. Briefly explain why some transparent materials appear colored while others are color- less.
|
The result is in the domain n
: Find the truth set for the following predicates: Hint: answer should be a { set } A) 8/x where x is an integer,the result is in the domain N
|
Reflection losses of transparent materials
: Briefly explain how reflection losses of transparent materials are minimized by thin surface coatings. The index of refraction of quartz is anisotropic. Suppose that visible light is passing from one grain to another of dif- ferent crystallographic..
|