Alias to change path on the fly
Trevor Paquette
paquette at cs-sun-fsa.cpsc.ucalgary.ca
Thu Nov 8 12:45:15 AEST 1990
Quick and I hope a fairly simple question. We have some programs
that must be able to take advantage of two co-processors on a sun.
The executables are name prog_host (no coprocessor), prog_sc (Supercard
coprocessor) and prog_qc (Quickcard coprocessor).
Each executable is in a seperate directory. I want to be able to change
my path on the fly to get at a certain executable. This is what I have
done so far.
Let's say my path is set as :
(. /usr/ucb /bin /usr/bin /usr/local/bin /home/insight/sparc/bin/itahost)
*******
itahost contains all the prog_host executables.
itaqc contains all the prog_qc executables.
itasc contains all the prog_sc executables.
I have come up with the following aliases to change which directory I will use
alias host 'echo set path=\($path\)|sed s/itaqc/itahost/|sed s/itasc/itahost/'
alias qc 'echo set path=\($path\)|sed s/itahost/itaqc/|sed s/itasc/itaqc/ '
alias sc 'echo set path=\($path\)|sed s/itaqc/itasc/ |sed s/itahost/itasc/'
These aliases of course only ECHO what the command to change the path should
be.
To actually execute the command we must put some ` around the command.
So the new aliases should be:
alias host '`echo set path=\($path\)|sed s/itaqc/itahost/|sed s/itasc/itahost/`'
alias qc '`echo set path=\($path\)|sed s/itahost/itaqc/|sed s/itasc/itaqc/ `'
alias sc '`echo set path=\($path\)|sed s/itaqc/itasc/ |sed s/itahost/itasc/`'
But these new aliases give me the following error:
`echo set path=\($path\)|sed s/itaqc/itahost/|sed s/itasc/itahost/`: Ambiguous
What am I doing wrong???????????
Trev
--
______________________________________/Through the darkness, the future past,
Trevor Paquette ICBM:51'03"N/114'05"W|The magician longs to see.
{ubc-cs,utai,alberta}!calgary!paquette|One chants out, between two worlds,
paquette at cpsc.ucalgary.ca |"Fire, walk with me."
More information about the Comp.unix.programmer
mailing list