mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
6 lines
167 B
Bash
6 lines
167 B
Bash
#!/bin/bash
|
|
PORTPARAM=""
|
|
if [[ "$#" > 2 ]]; then
|
|
PORTPARAM=$(printf -- "--port %q" "$3")
|
|
fi
|
|
bin/gamedig.js --output pretty --debug --type "$1" --host "$2" $PORTPARAM
|