rename scripts to shorter names

This commit is contained in:
Roman Zeyde
2014-09-02 18:14:37 +03:00
parent 83db77293d
commit 782df53816
9 changed files with 1 additions and 41 deletions

12
scripts/auto-calib Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
killall -q aplay arecord
./scripts/calib.py send &
SENDER_PID=$!
echo "Playing audio (PID=${SENDER_PID})..."
echo "Recording audio (Stop with Ctrl+C)..."
./scripts/calib.py recv
echo "Stopping player..."
kill -INT $SENDER_PID