Execute a C program from Shell


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Execute a C program from Shell
# 15  
Old 12-21-2010
./program &
wait
PID=$!
This is working but when i use
echo $PID
I get two numbers
# 16  
Old 12-21-2010
Quote:
Originally Posted by rmoncello
The "wait" will halt script execution until the program completes. Just placing it in the background via the "&" will allow the script to continue. The bash "$!" environemt variable will return the process ID of the last command put in the background. No sleep. No wait. Simply execute in background and capture PID via the $! then proceed with what you need to do with the script.
I already mentioned this $! in post #8.

I have no idea why the O/P wants his script to sleep for 2 minutes and I'm not going to second guess it.

---------- Post updated at 06:49 PM ---------- Previous update was at 06:48 PM ----------

Quote:
Originally Posted by nteath
./program &
wait
PID=$!
This is working but when i use
echo $PID
I get two numbers
That hardly seems likely. $! stores the process ID of the last background job run.
# 17  
Old 12-21-2010
Quote:
Originally Posted by scottn
I already mentioned this $! in post #8.

I have no idea why the O/P wants his script to sleep for 2 minutes and I'm not going to second guess it.

---------- Post updated at 06:49 PM ---------- Previous update was at 06:48 PM ----------



That hardly seems likely. $! stores the process ID of the last background job run.
Hi Scott!

I realize you first mentioned that in #8. I had been typing up #11 while you submitted that. The sleep was introduced by someone else in #2 where they were attempting to use a ps and grep pipe to get the PID. I don't believe that O/P really wants a sleep in there.
# 18  
Old 12-21-2010
Quote:
Originally Posted by rmoncello
Hi Scott!

I realize you first mentioned that in #8. I had been typing up #11 while you submitted that. The sleep was introduced by someone else in #2 where they were attempting to use a ps and grep pipe to get the PID. I don't believe that O/P really wants a sleep in there.
You're right. Sorry, I missed that.

So maybe the OP doesn't want to sleep. I do Smilie

O/P: Read posts 8 and 11, and ignore everything else! (no disrespect to anurag.singh)

Perhaps knowing what you want to do with the PID once you have it might be more useful to know.
This User Gave Thanks to Scott For This Post:
# 19  
Old 12-21-2010
Ok after all i got my pid with: PID=$!
Thank you Smilie

---------- Post updated at 01:51 PM ---------- Previous update was at 12:55 PM ----------

I have another question ( not sure if i had to make a new thread)

Now that i have the PID i want to retrieve information about my process, using the command 'top'.

So far i have
top -b -d 1.0 -p $PID
which returns information while my process is running. When the process stops , top is still running. How can i stop it and proceed with my shell?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Program Does not execute

Hi there, When I am trying to execute any shell script. The shell script only execute line 1 and I notice that the rest o the program was not executed. Please advise. # bash +x vmscript-4.sh Even when I enter this command there is not output. sudo su cd /tmp cp... (2 Replies)
Discussion started by: alvinoo
2 Replies

2. Ubuntu

I can't execute a C++ program, help!

My professor gave me a code with no errors. When I compile it's fine, it doesn't show any errors, but when I try to execute it shows this: line 3: syntax error near unexpected token '(' line 3: 'int main()' I searched through the Internet but I couldn't find any solution. Please!!!... (1 Reply)
Discussion started by: rosiiieee
1 Replies

3. Shell Programming and Scripting

Execute C program in Current shell

Hello, I have a c program executable which I need to run inside a shell script. But the c program runs in a subshell because of which all the actions done by the c program is not available to the current shell. Is there any way to execute a C program binary executable in the current shell? (4 Replies)
Discussion started by: sachinverma
4 Replies

4. Shell Programming and Scripting

how to execute a unix shell script from a java program

Hi All, well , i am facing this problem.. i have tried a few sample codes but there isn't any solution . could anyone please give a sample code as of how to do this... Please see the below details...and read the details carefully. I have written some code, logic is 1)from... (4 Replies)
Discussion started by: aish11
4 Replies

5. UNIX for Dummies Questions & Answers

how to execute program without using ./ or sh

Hi, I am a complete newbie for unix. I have just installed mysql on my MAC. I was wondering every time I wanted to use mysql I had to ./mysql or sh mysql everytime on /usr/local/bin/mysql/bin. How can I execute the mysql program without using ./ or sh. I chmod +x already. And what do I have to... (3 Replies)
Discussion started by: noppanit
3 Replies

6. Programming

C program to execute shell script

Hi, Can anyone give me a sample code to execute shell script from C program. Thanks (6 Replies)
Discussion started by: baigmd
6 Replies

7. Shell Programming and Scripting

C program to execute shell script

Hi, Can anyone pls give a sample to execute a shell script from C program Thanks (2 Replies)
Discussion started by: baigmd
2 Replies

8. UNIX for Dummies Questions & Answers

Script to open program and send/execute command in program

Hi, i want to write a script that executes a program (exec?) . this program then requires a filename as input. how do i give it this input in the script so the program will be complete run and close by the script. e.g. exec prog.exe program then asks for filename "enter filename:"... (1 Reply)
Discussion started by: tuathan
1 Replies

9. Shell Programming and Scripting

how to execute this program?

Filesystem 1024-blocks Free %Used Iused %Iused Mounted on /dev/hd4 32768 16016 52% 2271 14% / /dev/hd2 4587520 1889420 59% 37791 4% /usr /dev/hd9var 65536 12032 82% 518 4% /var /dev/hd3 819200 637832 ... (1 Reply)
Discussion started by: sathyaac
1 Replies

10. UNIX for Dummies Questions & Answers

Urgent!! How to write a shell program to execute command to access internet?

hi, I am new ot unix. So, can i write a shell(c shell or korn shell) program to access internet? I mean if I run the program, it can access specified url and then copy the html to a file? Can anyone help me? And how can make the program runs every 1 hr? new comer (2 Replies)
Discussion started by: firebirdonfire
2 Replies
Login or Register to Ask a Question