Page 1 of 1

Starting Linux programs

Posted: Mon Apr 13, 2020 3:59 pm
by Zinn
How to start from BlackBox the Linux terminal program and run a command in Terminal?
Where can I find samples?
Thank you very much for any hints.
- Helmut

Re: Starting Linux programs

Posted: Wed Apr 22, 2020 2:54 pm
by Ivan Denisov
Simple way it to use
Dialog.RunExternal

Code: Select all

MODULE DemoRun;
	IMPORT  Dialog;
	
	PROCEDURE Do*; 
	BEGIN
		Dialog.RunExternal('mkdir /home/dia/blackbox/test')
	END Do;

END DemoRun.