/usr/bin/pyfiglet is in python3-pyfiglet 0.7.4+dfsg-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 | #!/usr/bin/python3
from sys import stderr, exit
from pyfiglet import main, FontNotFound
try:
main()
except FontNotFound:
stderr.write('Font not found or not compatible. '
'Please install the toilet-fonts or figlet package for fonts.\n'
"Note that not all toilet's .tlf fonts are compatible.\n")
exit(1)
|