fltk-rundialog
A simple gui for run commandline process e show output in a window.
A simple gui for run commandline process e show output in a window. it is compiled statically and does not require the fltk libraries.
usage :
runbox <options>
--width= or -W for window weight
--height= or h for window height
--title= or -t for window title
--cmd= or -c command to run
--icon= or -i icon for the window
--autoclose= or -h (0/1) closing after the end of the process
--help or -h for this help
To get stderr use runbox --cmd=' ls myfolder &>mystderr_file.txt' and then read mystderr_file.txt for reading errors
If you get also stderr append '2>&1' at your commandline (example: runbox --cmd="ls /var/asd 2>&1" )