/usr/bin/rsf2model is in undertaker 1.2-1.
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 | #!/usr/bin/python
import sys
import os
from undertaker import RsfReader
from undertaker import TranslatedModel
if __name__ == '__main__':
fd = sys.stdin
if len(sys.argv) > 1:
fd = open(sys.argv[1])
rsf = RsfReader.RsfReader(fd)
sys.stdout.write(str(TranslatedModel.TranslatedModel(rsf)))
|