Top
||
Section Contents
||
Permuted Index
SavaJe OS
1.1.0
loadalias add to alias list from file or URL
loadalias [file | URL]
Load a set of aliases from either a file or URL.
When loadalias
is executed with no arguments,
it attempts to load the file /cf0/alias.txt
.
The format of an alias in the file is
Each line in the file is considered a separate alias.alias_name=commands
To set up an alias to run classes residing on a web server, place the following line in an alias file:
runweb=run http://mserver.myco.com/java_apps/
To load that alias (and others in that file),
loads the local file% loadalias myalias.txt
myalias.txt
.loads the file% loadalias http://192.168.0.189/alias/alias.txt % runweb Hello
alias/alias.txt
on http server 192.168.0.189
,
then runs the class Hello.class
from the directory java_apps
on http server myserver.myco.com
.