/usr/share/doc/siggen/examples/tune.sh is in siggen 2.3.10-5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh
# demo using ramp
#
tones="../tones -load samples/flute.wav -load samples/organ.wav"
f1=hole_bucket.notes
f2=clementine.notes
echo "there's a hole in my bucket - pure sine tones....."
$tones -i $f1 sin
echo "there's a hole in my bucket - using tone with harmonics....."
$tones -i $f1 flute
echo " "
sleep 1
echo and now one with harmony......
$tones -i $f2 flute,sin,tri,sin
|