/usr/bin/jacksum is in jacksum 1.7.0-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 | #!/bin/sh
##############################################################################
# Use this script for launching Jacksum easily from the command line
# just by typing "jacksum". You can remove this comment block if you like.
#
# You need to edit the path below (/mnt/share/ ...) so jacksum.jar
# can be found!
# Make sure, that this script is reachable by the operating system
# environment variable called PATH and make sure that
# the execute permissions are set up correctly (man chmod).
##############################################################################
java -jar "/usr/share/java/jacksum.jar" "$@"
|