Search Results

Search: Posts Made By: nitin
2,546
Posted By jaysunn
Sorry to jump in, and a bit off topic. However...
Sorry to jump in, and a bit off topic.
However I always thought that in order to use the wait $! syntax below:

wait $!

You would have to put the command into the background using the ampersand...
2,546
Posted By agama
I feel stupid -- I had set all of the tmp files...
I feel stupid -- I had set all of the tmp files to a different directory which was failing and my test never got to the more. Grrrrrr. Fixed my bug and problem reproduced, changed more to
cp...
2,546
Posted By Chubler_XL
This loop: ps -ef | awk '/[m]yAgent/{print...
This loop:
ps -ef | awk '/[m]yAgent/{print $8}' | while read lines ;
is using stdin so anything called from within it (like telnetTest()) cannot use any process that opens (and closes) stdin.
3,018
Posted By Chubler_XL
Or, you could just use awk '/[m]yAgent/{print $8}'
Or, you could just use awk '/[m]yAgent/{print $8}'
3,018
Posted By Corona688
Because you're in the middle of a pipe chain,...
Because you're in the middle of a pipe chain, standard input is already being used. Your read just grabs the next line printed by awk!

You should tell it explicitly that you want to read from the...
3,018
Posted By vgersh99
ps -ef | awk '/myAgent/{print $8}' | while read...
ps -ef | awk '/myAgent/{print $8}' | while read line ;
....
if [ "$response" = Y ] -o [ "$response" = y ] ; then
Forum: IP Networking 06-10-2010
3,574
Posted By radoulov
As far as I know, for established connections,...
As far as I know, for established connections, this should happen only for connections that are initiated from kernel space (like NFS ...).

You could try rpcinfo -p to see it its output helps.
Forum: Linux 06-09-2010
16,860
Posted By malcolmpdx
OK, I think I figured this out. If you don't...
OK, I think I figured this out.

If you don't have HISTTIMEFORMAT set, but do have a history file, and then set HISTTIMEFORMAT, your history will all show the same time.

If you then set...
Showing results 1 to 8 of 8

 
All times are GMT -4. The time now is 07:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy