8 lines
156 B
Bash
Executable File
8 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
test -z "$2" || test -n "$3" \
|
|
&& printf "Usage: %s [server] [port]\n" "$0" >&2 \
|
|
&& exit 64 # sysexits(3) EX_USAGE
|
|
|
|
liminality | nc "$1" "$2"
|