csta
csta

Reputation: 2553

Will running the same R script in a different terminal cause errors?

Currently, I create multiple copies of a script that each have a slightly different parameter values (3 different scripts). I run them from different folders. I'm wondering if I could just open three different terminals and run the same script. Of course, after starting each run at a particular parameter value, I would go back to the original script, change the parameter value, save the script and the run it again ...

I guess I'm not sure of all the steps that are preformed underneath the hood to run a script. Any thoughts would be appreciated.

Upvotes: 1

Views: 170

Answers (1)

abcde123483
abcde123483

Reputation: 3905

No it will have it's own memory and in no way overlap.

The only problem will be if both programs try to write to the same file at the same time.

Upvotes: 2

Related Questions