/usr/bin/pfsv is in pfsview 1.8.5-1ubuntu3.
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 | #!/bin/bash
############################################################
# View HDR images
############################################################
if [ -z "$1" ]; then
echo "View HDR images";
echo "Usage: pfsv <image> [<image>...]"
exit 0;
fi
pfsin "$@" | pfsview
|