blob: ded8627a0b136318c1d9a6e097a12cbb748e52fd (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | #! /bin/sh
set -euf
# cd //
cd $(dirname $(readlink -f $0))/../..
case "${1---help}" in
  --help)
    echo "Make an announcement! Usage: /overlord <text>"
  ;;
  *)
    exec god/overlord/index "$@"
  ;;
esac
 |