Looks like the project path and executable name contains spaces. Remove them and it should work (if xterm is installed).
@devs: where do the backslashes come from? ...
xterm -T my\ first\ c\ project ...
should be ...
xterm -T "my first c project" ...
?
- osdt
'\' is the escape character i.e. to insert a space afaik.
Indeed, it works to guard spaces ...
mkdir "/tmp/aaa bbb"
echo "#/bin/sh\necho Hello World" > "/tmp/aaa bbb/hello world.sh"
chmod +x "/tmp/aaa bbb/hello world.sh"
xterm -T /tmp/aaa\ bbb -e /usr/bin/cb_console_runner /tmp/aaa\ bbb/hello\ world.sh
Process returned 0 (0x0) execution time : 0.009 s
Press ENTER to continue.
xterm -T "/tmp/aaa bbb" -e /usr/bin/cb_console_runner "/tmp/aaa bbb/hello world.sh"
Process returned 0 (0x0) execution time : 0.009 s
Press ENTER to continue.
Funny, I've never seen it to be used like this :D
- osdt