Scripts vs PUT Files #1088
-
I am trying to understand the full difference between scripts and PUT files in order to implement the following flow:
I've gone through the documentation of
The "script" way seems to be more convenient. Moreover, why isn't |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @jkozlowicz Thanks for the question! I implemented something similar for a recent project I was working on with RTR. For my use case I have a binary that runs collects some data, and needed to write the response to disk and grab this.
As to your question, For the second part, you need to create a put file first, then are you able to reference it by name using I think for your use case you may need to do both, create a script and put file similar to my example above. You're correct on the Let me know with any additional questions on the above! |
Beta Was this translation helpful? Give feedback.
Hi @jkozlowicz Thanks for the question!
I implemented something similar for a recent project I was working on with RTR.
For my use case I have a binary that runs collects some data, and needed to write the response to disk and grab this.
RTR_CreatePut_Files
+BatchAdminCmd put
BatchAdminCmd runscript
As to your question,
runscript
allows you to specify a script at runtime through the-Raw
…