This file is indexed.

/usr/bin/faust2owl is in faust 0.9.95~repack1-2.

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
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

FILENAME=$1
CLASSNAME=`basename $FILENAME .dsp`
PATCHNAME=$CLASSNAME"Patch"
PATCHFILE=$PATCHNAME".hpp"
TEMPFILE=`mktemp temp.owl.XXXX`

#echo $FILENAME $CLASSNAME $PATCHNAME $PATCHFILE

faust -i -inpl -a owl.cpp -cn $CLASSNAME $FILENAME -o $TEMPFILE || rm $TEMPFILE && exit 1
cat $TEMPFILE | sed -e "s/FaustPatch/$PATCHNAME/g" > $PATCHFILE
rm $TEMPFILE

#(faust -i -inpl -a owl.cpp -cn $CLASSNAME $FILENAME | sed -e "s/FaustPatch/$PATCHNAME/g" > $PATCHFILE) || exit
echo ""         
echo "           Instructions to add $PATCHFILE to your owl pedal"
echo ""         
echo ""
echo "Copy file [[ $PATCHFILE ]] to OwlWare/Libraries/OwlPatches directory"
echo ""
echo "Add line [[ #include \"$PATCHFILE\" ]] to OwlWare/Libraries/OwlPatches/includes.h file"
echo ""
echo "Add line [[ REGISTER_PATCH($PATCHNAME, \"$PATCHNAME\", 2, 2); ]] to OwlWare/Libraries/OwlPatches/patches.cpp file"
echo ""
echo "Rebuild the firmware using the command make in OwlWare directory"
echo ""
echo "Upload the resulting firmware OwlWare/build/OwlWare.bin to the pedal using the OwlNest software."
echo ""