mirror of
https://github.com/romanz/amodem.git
synced 2026-03-20 17:39:30 +08:00
9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
set -u
|
|
set -x
|
|
set -e
|
|
|
|
dd if=/dev/urandom of=data.send bs=1024 count=8
|
|
python send.py
|
|
python recv.py
|
|
diff data.* || sha256sum data.* |