mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
24 lines
672 B
Bash
Executable file
24 lines
672 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
################################################################################
|
|
################################### Settings ###################################
|
|
################################################################################
|
|
|
|
# The port the nibriboard command server is listening on
|
|
port=31587;
|
|
|
|
################################################################################
|
|
|
|
command="$@";
|
|
|
|
if [[ "${command}" == "" ]]; then
|
|
command="help";
|
|
fi
|
|
|
|
echo "${command}" | nc ::1 $port;
|
|
exit_code=$?;
|
|
|
|
if [[ "${exit_code}" -ne "0" ]]; then
|
|
echo -e "nibriboardctl: Can't contact the command server at [::1]:$port";
|
|
exit ${exit_code};
|
|
fi
|