Skip to content
Snippets Groups Projects
Commit e5ee11a7 authored by Tom Fischer's avatar Tom Fischer
Browse files

Script to add format string prefix tag of the OGS project file.

parent 9007e48d
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
sub_path=//OpenGeoSysProject/time_loop/output/prefix
prefix_value=`xmlstarlet sel -t -v $sub_path $1`
prefix_format_string=${prefix_value}_pcs_{:process}_ts_{:timestep}_t_{:time}
xmlstarlet ed -u $sub_path -v $prefix_format_string $1 > /tmp/prefix.prj
#format the result file
xmlstarlet fo -s 4 /tmp/prefix.prj > ${1}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment