/usr/bin/pegasus-sc-converter 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 13 14 15 16 17 | #!/bin/bash
#
# generate a Concrete Dag by providing a DAX
#
# $Id$
PEGASUS_CONFIG="`dirname $0`/pegasus-config"
eval `$PEGASUS_CONFIG --sh-dump`
. $PEGASUS_SHARE_DIR/common.sh
# run java program
${JAVA} \
"-Dpegasus.home.sysconfdir=$PEGASUS_CONF_DIR" \
"-Dpegasus.home.bindir=$PEGASUS_BIN_DIR" \
"-Dpegasus.home.sharedstatedir=$PEGASUS_SHARE_DIR" \
"-Dpegasus.home.schemadir=$PEGASUS_SCHEMA_DIR" \
$addon edu.isi.pegasus.planner.client.SCClient "$@"
|