Hello,
I’m a novice in Basic macro language.
I can’t run a bash script from a macro on Manjaro.
The macro should launch a nodejs script and open a console window.
In the konsole (kde), the command ‘bash run.sh’ works like a charm.
I tried:
Shell "bash -c '/home/geny/Testing/run.sh'"
and
Shell "bash 'home/geny/Testing/run.sh'"
and
x = Shell("/home/geny/Testing/run.sh")
and
Shell("/home/geny/Testing/run.sh", 1,, "true")
(in the last command, x return 0), but nothing works.
I mean, the script isn’t executed.
The script ‘run.sh’ consists in only two rows:
#!/bin/bash
node "home/geny/Testing/myapp.js"
What am I doing wrong?
Thanks in advance.