I'm familiar with it. I did that on windows.
My solution was to just go through the alphabet. export("$A*",blahblah);export("$B*",blahblah);
Ahm, I think export can append to a file.So to get it all in one file it'd be like:
export("$A*","base/allvars.txt");
export("$B*","base/allvars.txt",1);
export("$C*","base/allvars.txt",1);
...
This worked. Thank you!
Here's my code:
$alphabet = "abcdefghijklmnopqrstuvwxyz";
function exportVars(%fn) {
%len = strLen($alphabet);
for (%i = 0; %i < %len; %i++) {
%c = getSubStr($alphabet, %i, 1);
export("$" @ %c @ "*", %fn, 1);
}
}
Short, fast, and it doesn't crash.
could also try usin this: https://www.diffchecker.com/diff
Then I used this to check the difference. This is exactly the sort of thing I was looking for.
Thanks, everyone!