Rick Engebretson wrote:
Further, you can create a shell alias like this; gpcc='/home/rick/compiler/bin/gpc --executable-file-name --automake --unit-path=/home/rick/gpc/compiler/lib/gcclib/ ... ' export gpcc
Now you should be able to compile and link by typing $gpcc program.pas .
That's actually no alias, but a variable. An alias is this:
alias gpcc='blah ...'
gpcc program.pas
Frank