10 lines
149 B
Bash
Executable file
10 lines
149 B
Bash
Executable file
#!/bin/sh
|
|
|
|
len='7:00:00'
|
|
|
|
if [ "$1" != '' ]; then
|
|
len=$1
|
|
fi
|
|
|
|
play -t sl - synth $len brownnoise \
|
|
band -n 1200 200 tremolo 20 .1 < /dev/zero
|