/usr/bin/tomahawk-rsync3 is in python3-tomahawk 0.7.1-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 14 15 16 | #!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
try:
import bootstrap
# Add TOMAHAWK_HOME, TOMAHAWK_HOME/lib to sys.path
parent, bin_dir = bootstrap.set_lib_path(__file__)
except:
pass
from tomahawk.rsync import RsyncMain
if __name__ == '__main__':
sys.exit(RsyncMain(__file__).run())
|