I'm invoking RScript via this command:
RScript myScript.R var1, var2, var3
This works if the length of variables is small. However, as soon as it exceeds a certain length (say over a 1000 characters) it breaks. Is there a limit to the length of string variables I can pass and/or is there a limit to the total (var1 + var2 + var3) data size I'm able to pass as arguments to the RScript.
Thanks!