Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Poniżej umieszczony jest, wykorzystywany w zadaniu, skrypt powłoki nfock.sh.

Code Block
languagebash
#!/bin/bash

outfile=${QCG_OUTERR_FILE:-_stdouterr}
text=`awk '$1~/NFock/ { last=$2; nr+=1; } END { print "NFock at",nr,"step:",last }' $outfile`
if [ -n "$text" ]; then
        append_text "$text"
fi

...