/usr/bin/faust2sig 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 -sg $f -o /dev/null
dot -Tpdf $f-sig.dot -o $f-sig.pdf
rm $f-sig.dot
done
|