diff options
author | Gavriel Fleischer <flocsy@gmail.com> | 2019-01-08 10:56:41 +0200 |
---|---|---|
committer | Gavriel Fleischer <flocsy@gmail.com> | 2019-01-08 10:56:41 +0200 |
commit | 8626735a9b2049717fdc0b12ebd5c3989cb8b263 (patch) | |
tree | 89c6a56de67f9df91fdae2953a4b0fa9fcc292a1 | |
parent | cc9c8b2793a000d6ad3e844c5654bd6a996d592b (diff) | |
download | trackermap-server-8626735a9b2049717fdc0b12ebd5c3989cb8b263.tar.gz trackermap-server-8626735a9b2049717fdc0b12ebd5c3989cb8b263.tar.bz2 trackermap-server-8626735a9b2049717fdc0b12ebd5c3989cb8b263.zip |
remove non-standard -N
-rwxr-xr-x | tools/hex.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hex.sh b/tools/hex.sh index b9ea36de2..78cd8fa38 100755 --- a/tools/hex.sh +++ b/tools/hex.sh @@ -27,7 +27,7 @@ send_hex_udp () { } send_hex_tcp () { - echo "$hex" | xxd -r -p | nc -N "$host" "$port" + echo "$hex" | xxd -r -p | nc "$host" "$port" } send_text_udp () { |