13 lines
436 B
Text
13 lines
436 B
Text
|
;Simple installation script for the Atma Fileserver
|
||
|
|
||
|
on *:load:{
|
||
|
$iif($script(atma.mrc),unload -rs " $+ $ifmatch $+ ")
|
||
|
$iif($script(formatStr.mrc),unload -rs " $+ $ifmatch $+ ")
|
||
|
$iif($script(atma.sa),unload -rs " $+ $ifmatch $+ ")
|
||
|
$iif($script(formatStr.sa),unload -rs " $+ $ifmatch $+ ")
|
||
|
|
||
|
load -rs " $+ $scriptdiratma.sa $+ "
|
||
|
load -rs " $+ $scriptdirformatStr\formatStr.sa $+ "
|
||
|
|
||
|
unload -rs " $+ $script $+ "
|
||
|
}
|