I'm running a study from the command line with:
$ as_run myStudy.export
After that, the file myStudy.export is slightly modified, adding some lines and substituting the name of the input and results files with their full paths. For example:
F comm myStudy.comm D 1
get replaced with:
F comm /home/user/path/to/my/file/truss.comm D 1
I want to keep this file portable, so I don't want it to have the full path of the files for my machine. Is there any way for prventing as_run from doing this?
Thanks