6 lines
199 B
Bash
Executable File
6 lines
199 B
Bash
Executable File
#!/bin/ash
|
|
cols=45
|
|
|
|
clear
|
|
arecord -q -c 1 --period-size=100 --buffer-size=250 -f U16_LE -t raw -D loopout | hexdump -e ''$(expr $cols + 1)'/2 "%o ""\n"' | tr -d '*' | xargs -n $cols -r ./spark -n -r
|