December 1999
Beginner
528 pages
11h 10m
English
To make sure that the functions have been sourced, use the set command, which will display all the loaded functions available to the shell.
$ set
USER=dave
findit=()
{
if [ $# -lt 1 ]; then
echo "usage :findit file";
return 1;
fi;
find / -name $1 -print
}
...Read now
Unlock full access