Nov 17, 2000 #1 need2no2 IS-IT--Management Oct 28, 2005 1 US I NEED TO KNOW HOW I CAN RUN PROGRAM FROM THE COMMAND LINE, THAT I HAVE INSTALL ON UNIX? WHAT IS THE COMMAND OR OPERATION THAT I NEED TO PERFORM?
I NEED TO KNOW HOW I CAN RUN PROGRAM FROM THE COMMAND LINE, THAT I HAVE INSTALL ON UNIX? WHAT IS THE COMMAND OR OPERATION THAT I NEED TO PERFORM?
Nov 17, 2000 #2 rbobbitt Programmer Aug 17, 2000 566 US um, type the name of the program... # prog If the program is not in your path, you need to specify the absolute path to the program when executing it (or add the directory to your path). # /path/to/prog If the program is in the current directory and the current directory is not in your path: # ./prog HTH, Russ bobbitts@hotmail.com http://home.earthlink.net/~bobbitts Upvote 0 Downvote
um, type the name of the program... # prog If the program is not in your path, you need to specify the absolute path to the program when executing it (or add the directory to your path). # /path/to/prog If the program is in the current directory and the current directory is not in your path: # ./prog HTH, Russ bobbitts@hotmail.com http://home.earthlink.net/~bobbitts
Dec 5, 2000 #3 Danne MIS Aug 31, 1999 33 SE But check that the program is executable first. Upvote 0 Downvote
Jan 3, 2001 #4 MoisDude MIS Jan 3, 2001 68 PR Right you are Danne! And if it is not an executable he must run "chmod (prot needed) Filaname" example: To have everyone be able to execute pinghhh.sh #chmod 777 pinghhh.sh Carefull!--- My example sets access to this file to even the entire world! L8ter! Life is good!, live it? Upvote 0 Downvote
Right you are Danne! And if it is not an executable he must run "chmod (prot needed) Filaname" example: To have everyone be able to execute pinghhh.sh #chmod 777 pinghhh.sh Carefull!--- My example sets access to this file to even the entire world! L8ter! Life is good!, live it?