Versions Compared

Key

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

...


By using %includenopp filename which will include the file as is without any interpretation. This makes it easy to test the script separately , but allows it to be edited by ecflowviewecflow_ui.

Code Block
%nopp echo "char like % can be safely used here"
 date +%Y.%m.%d 
%end

echo "otherwise we must write"

date +%%Y.%%m.%%d

...