Hello,
Could anybody suggest how I transfer an output file I got from running my executable back to my submission Âdir.Â
The thing is I am sending a package .tar with the job. The job runs as
It untar the file in working node....
go to dir. test/resonance/ i.e cd test/resonance
run the exe. and there I get output file as test.root.Â
1. How to transfer back test.root into my submission dir. ?Â
2. All my jobs gives test.root as output. I suppose I need to transfer into dir. named 1/, 2/, 3/ etc otherwise they will overwrite.
I triedÂ
transfer_output_file= test.root. But it complains of not getting test.root.
Then I thought since I ran in sub. test/resonance, May be I need to transfer my test.root into working node main dir. so I put in the end where it runs exe,Â
I put cp test.root ../../
Still it is not finding test.root.
Any further idea?