This file is indexed.

/usr/bin/faust2svg 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
#!/bin/bash

for f in $@; do
    faust -t 0 -svg $f -o /dev/null || exit
done