moonpool/test/lwt/run_hash.sh
2024-02-20 19:57:58 -05:00

12 lines
168 B
Bash
Executable file

#!/bin/bash
PORT=1234
./hash_server.exe -p $PORT &
echo "run hash client -p $PORT $@"
export LC_LANG=C
export LC_ALL=C
./hash_client.exe -p $PORT $@ | sort
kill %1