EDITED
Just created a new version of QET_ElementScaler:
With the newly added optional parameter "-o" or "--stdout" it is now possible to write the scaled element-data to stdout instead of writing a renamed file.
The new option "-i" or "--stdin" allows QET_ElementScaler to be used with re-direction and/or pipes on the commandline:
The input-data is read from stdin and the output will be written to stdout.
Examples to write to stdout:
QET_ElementScaler -o InputElement.elmt 1.4 > NewScaledElement.elmt
QET_ElementScaler -o InputElement.elmt 1.4 | OtherSoftwareBinary
Examples to use re-direction and/or pipes:
QET_ElementScaler -i 1.4 < InputElement.elmt > NewScaledElement.elmt
cat InputElement.elmt | QET_ElementScaler -i 1.4 | OtherSoftwareBinary
Have a look and give it a try:
https://github.com/plc-user/QET_ElementScaler
