File: assaultcube-server

package info (click to toggle)
assaultcube 1.2.0.2.1-2
  • links: PTS, VCS
  • area: contrib
  • in suites: bullseye
  • size: 4,256 kB
  • sloc: cpp: 55,586; ansic: 4,542; sh: 4,174; makefile: 392
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"