This file is indexed.

/usr/bin/faust2firefox is in faust 0.9.46-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
#!/bin/bash
if [[ $(uname) == Darwin ]]; then
	APPL='open -a Safari'
else
	APPL=xdg-open
fi

faust2svg $@
$APPL ${1%.dsp}-svg/process.svg&
shift
for f in $@; do
    sleep 1
    $APPL ${f%.dsp}-svg/process.svg&
done