13 lines
138 B
Bash
Executable file
13 lines
138 B
Bash
Executable file
#!/bin/rc
|
|
switch($#*){
|
|
case 0
|
|
exec upas/nedmail
|
|
}
|
|
|
|
switch($1){
|
|
case -f* -r* -c* -m*
|
|
exec upas/nedmail $*
|
|
case *
|
|
exec upas/marshal $*
|
|
}
|