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