Hi!
I want to be able to change CCcam.cfg file from the blue panel. To achieve this I have placed two scripts in the /usr/script directory:
One is called 1.sh and it goes like this:
The other is called 2.sh and it's basically the same (only the source file changes):
I gave both of them 755 permissions.
Problem is when I go to the blue panel -> utilities -> user scripts and launch one of the scripts it says:
I can't understand what I'm doing wrong. Any help?
Thanks!!
I want to be able to change CCcam.cfg file from the blue panel. To achieve this I have placed two scripts in the /usr/script directory:
One is called 1.sh and it goes like this:
Code:
#!/bin/sh rm /etc/CCcam.cfg cp /etc/CCcam.cfg.1 /etc/CCcam.cfg
Code:
#!/bin/sh rm /etc/CCcam.cfg cp /etc/CCcam.cfg.2 /etc/CCcam.cfg
Problem is when I go to the blue panel -> utilities -> user scripts and launch one of the scripts it says:
Code:
/bin/sh /usr/script/1_user.sh Not Found! exevution halted
Thanks!!

Comment