[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [HTCondor-users] String composite argument



Dear Cole,

I tried making a specific test and it didnât work:

my test.sub

TEST_ARG = ''second argument''

executable = test.sh
arguments = first_argument $(TEST_ARG)
log                     = test.log
output                  = test.out
error                   = test.err
should_transfer_files   = Yes
when_to_transfer_output = ON_EXIT
queue

my executable test.sh

#!/usr/bin/env bash
echo "argument 1 = $1"
echo "argument 2 = $2â

Arguments from Dry run

Args="first_argument ''second argument''"

The resulting test.out,

argument 1 = first_argument
argument 2 = ''second