mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
402d5004ad
A Rexx interpreter
12 lines
206 B
Bash
12 lines
206 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
[ -x /usr/local/bin/rxstack ] && /usr/local/bin/rxstack -d && \
|
|
echo -n "Starting Regina Stack"
|
|
;;
|
|
stop)
|
|
killall rxstack && echo -n "Shutting down Regina Stack"
|
|
;;
|
|
esac
|