Jump to content

How do we use .run files


olddays
 Share

Recommended Posts

There's a lot of different ways to do this depending on the ".run" file. But you usually have to make the file executable before anything will happen. Open a console and run:

 

$ cd <path to directory with .run file>
$ chmod +x <name of .run file>
$ ./<name of .run file>

 

If this is not clear, post back with the specific file you are trying to run and any questions you have about the above commands and I will go into more detail.

Link to comment
Share on other sites

Normally, with a run file I just do:

 

sh filename.run

 

but chmodding as above is just doing the same, as you're making it executable without having to put sh before it.

Link to comment
Share on other sites

Normally, with a run file I just do:

 

 

sh filename.run

 

but chmodding as above is just doing the same, as you're making it executable without having to put sh before it.

 

Thank you , I got it.

Edited by olddays
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...