Find the answer to your Linux question:
Results 1 to 3 of 3
I need to run the script "make-hiddev" , how can i do it ?...
  1. #1
    Just Joined!
    Join Date
    Oct 2005
    Location
    Tehran
    Posts
    2

    Help me !

    I need to run the script "make-hiddev" , how can i do it ?

  2. #2
    Linux User nalg0rath's Avatar
    Join Date
    Sep 2004
    Location
    Stockholm
    Posts
    303
    Code:
    # ./make-hiddev
    or
    Code:
    # exec make-hiddev
    (?)
    Else it depends on the scripting language, for example python:
    Code:
    python make-hiddev

  3. #3
    Just 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.
    Code:
    chmod +x make-hiddev
    should take care of it.

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •