This file is indexed.

/usr/bin/faust2graph 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
#!/bin/bash
for f in $@; do
    faust -vec -tg $f -o /dev/null
	dot -Tpdf $f.dot -o $f.graph.pdf
	rm $f.dot
done