Submitted Questions

  • How to extract job parameters from a file?

    Anil.K.Thodeti

    • Mar 31st, 2017

    Cat abc.txt | tr
    , | sed s/,$//(Exec command stage), Start Loop (pass this output $CommandOutput), and then send this into a job, and then end loop at the end

    karthick

    • May 30th, 2014

    Parameter file will have comma delimiter.
    use cat file1.txt |cut -d, -f1| tr -d "
    " command to extract the first field ...
    use execute command activity for extracting all the parameter. then finally pass the value to actual job.