/usr/bin/pegasus-gridftp is in pegasus-wms 4.4.0+dfsg-7.
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
#
# Perform operations against GridFTP servers
#
set -e
PEGASUS_CONFIG="$(dirname $0)/pegasus-config"
eval $($PEGASUS_CONFIG --sh-dump)
. $PEGASUS_SHARE_DIR/common.sh
nice ${JAVA} $addon edu.isi.pegasus.gridftp.PegasusGridFTP "$@"
|