how will u execute a file in unix
Answers were Sorted based on User's Feedback
Answer / ravneet
if the file doesn't have executable permissions than assign
the same as chmod 755 <filename>. after that execute the
same by using command ./<filename>
Is This Answer Correct ? | 25 Yes | 2 No |
Answer / narendrasairam
Depending on the type of shell you can execute a file in
either of the ways
1) ksh <filename>
2) sh <filename>
If the file already possess execute bit set on it, then you
can directly execute the file with its name alone
1) <filename>
Is This Answer Correct ? | 17 Yes | 0 No |
Answer / lokesh
There are lot of ways by which u can execute a file in Unix.
1. ./<filename>
2. <filename> #only if the permissions are in place for the
user
3. sh <filename> #uses bash shell
4. nohup <filename> #the process doesn't get killed even on
reboot
5. Batch <filename>
6. at <time> <filename> #to schedule the job
7. U can also autorun it by making an entry into the cron
Is This Answer Correct ? | 3 Yes | 1 No |
the difference between a soft link and a hard link?
What is grep in bash?
What will the following command do?
When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:
solaris Run level?
How do you create a file in UNIX
36 Answers Accenture, EMG, Nokia, QA, TD,
What is the use of find command in unix?
What is the procedure of "at" and crontab" commands?
Is grep faster than awk?
fork in unix ?
How do you remove a crontab file?
Where can I get the free download of Unix by Yeswant Kanetkar?