This file is indexed.

/usr/share/checkbox/scripts/alsa_record_playback is in checkbox 0.13.7.

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
#!/bin/sh

OUTPUT=`mktemp -d`
gst_pipeline_test -t 5 "alsasrc ! audioconvert ! level name=recordlevel interval=10000000 ! audioconvert ! wavenc ! filesink location=$OUTPUT/test.wav"
aplay $OUTPUT/test.wav
rm $OUTPUT/test.wav
rmdir $OUTPUT