I tried to get the PID on the files called PID_Server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting I tried to get the PID on the files called PID_Server
# 1  
Old 04-16-2002
I tried to get the PID on the files called PID_Server

$!>PID_FILES

I try to get the PID of the last process on the files called PID_FILES.
But the command stands by on the output screen. I have to tape on ENTER to get the prompt and continue .

How may I simulate this action ( tape on ENTER ).
thanks
# 2  
Old 04-16-2002
Post to original posting, please... thanks!

Please append questions on the same topic to one posting. Please don't create new messages relating to another post.

I think your problem with this is spaces. Do this $! > PID_FILES

Please see this posting, Jimbo's response most of the way down.

https://www.unix.com/showthread.php?s...&highlight=PID


This will directly help you with your problem.


Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Creating an array that stores files to be called on.

If the user wants to call multiple files of their choosing and in different directories and then have all those files placed into one command ex: chmod * * file1 file2 how would you go about that? I was thinking starting some like this and then thinking would I loop it. ARRAY=($(find .... (3 Replies)
Discussion started by: Toscy
3 Replies

2. Shell Programming and Scripting

Exclude certain file names while selectingData files coming in different names in a file name called

Data files coming in different names in a file name called process.txt. 1. shipments_yyyymmdd.gz 2 Order_yyyymmdd.gz 3. Invoice_yyyymmdd.gz 4. globalorder_yyyymmdd.gz The process needs to discard all the below files and only process two of the 4 file names available ... (1 Reply)
Discussion started by: dsravanam
1 Replies

3. UNIX for Dummies Questions & Answers

Determine uniqueness of pid to name output files

Hi, We've a process on AIX UNIX server which is executed by multiple uses during a day. I wish to create a log file for every time the process is executed. I wish to know how unique are PID(s) on AIX UNIX servers if I were to name the log files with <date> and <PID>? E.g. If I create my... (1 Reply)
Discussion started by: vkumbhakarna
1 Replies

4. Shell Programming and Scripting

Copy all HTML files to a folder called webback.

Hi I need help in that script, in which I am trying to copy all HTML files in a folder called WEBBACK, display names of the files copied and a message. Here is the script: #!/bin/csh set temp=`find *.html` \*TO FIND ALL THE HTML FILES*/ set n=$#temp \*N= NUMBER OF... (3 Replies)
Discussion started by: satnamsat
3 Replies

5. UNIX for Dummies Questions & Answers

Need to get pid of a process and have to store the pid in a variable

Hi, I need to get the pid of a process and have to store the pid in a variable and i want to use this value(pid) of the variable for some process. Please can anyone tell me how to get the pid of a process and store it in a variable. please help me on this. Thanks in advance, Amudha (7 Replies)
Discussion started by: samudha
7 Replies

6. Shell Programming and Scripting

comparing PID values of 2 Files in shell Options

Hi, There is a file having a list of running PIDs and another file having a list of registered PIDs. How can we check if each value of running PIDs are less or more than the registered PIDs i.e. comparing the value of each PID in both the files. Request you to pls give your inputs. ... (2 Replies)
Discussion started by: marconi
2 Replies

7. UNIX for Advanced & Expert Users

What are tr.pid.rotation files?

Hi! I'm facing a unique problem! When I run a program on HPUX, it runs fine but it also produces a bunch of files of the format: tr.<pid>.number the contents of these files are a bunch of numbers and I know for a fact that these files are not created by the program I'm running. Seems... (3 Replies)
Discussion started by: zackz
3 Replies

8. Shell Programming and Scripting

KILL PID, intern should kill another PID.

Hi All, In my project i have two process runs in the back end. Once i start my project, and execute the command ps, i get below output: PID TTY TIME CMD 9086 pts/1 0:00 ksh 9241 pts/1 0:02 java 9240 pts/1 0:00 shell_script_bg java with 9241 PID is the main... (4 Replies)
Discussion started by: rkrgarlapati
4 Replies

9. UNIX for Dummies Questions & Answers

Session PID & socket connection pid

1. If I use an software application(which connects to the database in the server) in my local pc, how many PID should be registered? Would there be PID for the session and another PID for socket connection? 2. I noticed (through netstat) that when I logged in using the my software application,... (1 Reply)
Discussion started by: pcx26
1 Replies

10. Programming

printing ppid,child pid,pid

question: for the below program i just printed the value for pid, child pid and parent pid why does it give me 6 values? i assume ppid is 28086 but can't figure out why there are 5 values printed instead of just two! can someone comment on that! #include<stdio.h> #define DIM 8 int... (3 Replies)
Discussion started by: a25khan
3 Replies
Login or Register to Ask a Question