Results 1 to 3 of 3
I need to run the script "make-hiddev" , how can i do it ?...
- 10-13-2005 #1Just Joined!
- Join Date
- Oct 2005
- Location
- Tehran
- Posts
- 2
Help me !
I need to run the script "make-hiddev" , how can i do it ?
- 10-13-2005 #2orCode:
# ./make-hiddev
(?)Code:# exec make-hiddev
Else it depends on the scripting language, for example python:
Code:python make-hiddev
- 10-13-2005 #3Just Joined!
- Join Date
- Jan 2005
- Location
- Topeka, KS, USA
- Posts
- 88
If you have any problems, make sure the user has read and execute for the script.
should take care of it.Code:chmod +x make-hiddev
The reason you need the ./ is because when you run a command, it searches your paths to find out where to look for commands, and the location where your script is saved isn't one of the defaults.


Reply With Quote
