The script for the command "set delim" may crush your commands
for example:
1) you have delim set to ";"
2) you have command "LOAD"
open 1;get ring,ring 2,ring 3 from 1;close 1
shell> set delim ,
shell> set delim ;
The command SAVE will be changed this way:
after first shell command it will be:
open 1,get ring,ring 2,ring 3 from 1,close 1
after second shell command it will be:
open 1;get ring;ring 2;ring 3 from 1;close 1
there is no way to make commands work after such combination of shell
commands.
The script for the command "set delim" may crush your commands
for example:
1) you have delim set to ";"
2) you have command "LOAD"
open 1;get ring,ring 2,ring 3 from 1;close 1
shell> set delim ,
shell> set delim ;
The command SAVE will be changed this way:
after first shell command it will be:
open 1,get ring,ring 2,ring 3 from 1,close 1
after second shell command it will be:
open 1;get ring;ring 2;ring 3 from 1;close 1
there is no way to make commands work after such combination of shell
commands.
Only Arch Wiz could help.
I can recommend using delims with several characters. For example #; or ;; or
something. Makes your game a lot easier IMO.
The script for the command "set delim" may crush your commands
for example:
1) you have delim set to ";"
2) you have command "LOAD"
open 1;get ring,ring 2,ring 3 from 1;close 1
shell> set delim ,
shell> set delim ;
The command SAVE will be changed this way:
after first shell command it will be:
open 1,get ring,ring 2,ring 3 from 1,close 1
after second shell command it will be:
open 1;get ring;ring 2;ring 3 from 1;close 1
there is no way to make commands work after such combination of shell
commands.