IBM Sterling Connect:Direct : Script to get process in HOLD and WAIT queue: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

2 October 2023

  • curprev 12:1312:13, 2 October 2023Ebasso talk contribs 1,499 bytes +253 No edit summary
  • curprev 12:1012:10, 2 October 2023Ebasso talk contribs 1,246 bytes +1,246 Created page with " = Script = #!/bin/bash set +vx NDMAPICFG=/home/cdadmin02/cdunix/ndm/cfg/cliapi/ndmapi.cfg export NDMAPICFG # executa o sel pro selpro_output=$(/home/cdadmin02/cdunix/ndm/bin/direct -s << EOJ selpro; EOJ ) count=$(echo "$selpro_output" | grep -c "HOLD" ) if [ $count -gt 0 ]; then echo "processos em HOLD - $count vezes:" > processo_HOLD.out else echo "" > processo_HOLD.out fi count=$(echo "$selpro_output" | grep -c "WAIT" ) if [ $count -g..."