File: assaultcube-server

package info (click to toggle)
assaultcube 1.3.0.2%2Bdfsg-5
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, forky, sid, trixie
  • size: 4,344 kB
  • sloc: cpp: 56,878; sh: 11,155; ansic: 4,544; makefile: 385
file content (13 lines) | stat: -rwxr-xr-x 250 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
for arg
do
    if [ "$arg" = --help ]
    then
       exec man assaultcube-server
    fi
done

AC_OPTIONS=""
cd /usr/lib/games/assaultcube
exec ./ac_server ${AC_OPTIONS} ${1+"$@"}
# ${1+"$@"} is a portability hack, keyword "wrapper script"