Search Results

Search: Posts Made By: helper
Forum: Solaris 08-20-2013
2,182
Posted By helper
Command to list all header files used to create an executable
All,

I would like to know if there is a command which will list all the header files which were used while creating the executable.
Forum: HP-UX 04-23-2012
2,361
Posted By helper
Hi Methyl, Thanks for the reply. I have...
Hi Methyl,

Thanks for the reply. I have already posted this question in Informix dbforums. Hoping to get a reply from them.

Thanks...
Forum: HP-UX 04-22-2012
2,361
Posted By helper
Migration - Compiler Issues.
All,

We are migrating an application from HP-UX B.11.00 to HP-UX B.11.31 and both of them have the same informix version - 7.25se. However the compilers are different on both servers.
HP-UX...
Forum: HP-UX 04-21-2012
14,155
Posted By helper
Hi vbe, Thanks for the information....
Hi vbe,

Thanks for the information. Can you give me the details of that .. so that we can procure it and use the same.
Forum: HP-UX 04-16-2012
14,155
Posted By helper
Command to trace System Calls on HP UX
All,

Kindly let me know command which is used to trace the system calls on HP - UX server when an executable is run.

On Solaris we have TRUSS which does the need. On HP UX we have TUSC...
Forum: Solaris 12-26-2009
5,186
Posted By helper
Socket Error
Dear All,

I am facing a socket error - Connection Refused on Solaris Server 9.
Here is the error message
ConnectSock("<servername>", <port>, -3) failed

Recently we upgraded the CC...
1,559
Posted By helper
Use for loop and use the command netstat ...
Use for loop and use the command netstat

"X=`sqlplus -s $var1/$var1<<eof
SET HEADING OFF;
select port from table1;`
echo $X "
for i in `echo $X`
do
netstat -i $X
done
1,559
Posted By helper
Use SET HEADING OFF; This statement should...
Use
SET HEADING OFF;

This statement should be immediately after you login to sql.


Ideally this is the way it has to look.

"X=`sqlplus -s $var1/$var1<<eof
SET HEADING OFF;
select port...
Forum: Solaris 11-26-2008
39,936
Posted By helper
Check CRON Process
How to find what are the cron jobs which are running at any instant on a Solaris server ??? The job can be scheduled from any id but still would like to list all the cron jobs which are running on...
14,232
Posted By helper
All, Thanks for the solutions. i was...
All,

Thanks for the solutions. i was looking at a one line command and the solution given by SFNYC suits.

Bakunin, thanks for the solution as well. I believe the idea of using the...
14,232
Posted By helper
Jim, Thanks for a quick reply. I am actually...
Jim,

Thanks for a quick reply. I am actually using Solaris and Dont think there is a option -B as in Linux. Let me know if you have anyother thought on this..


Thanks.
14,232
Posted By helper
Command to display nth line before the string is matched.
All,

Is there any way out to display the nth line before the string is matched ???
Eg : If i have a file which has the following contents and if i want to get the
3rd line before the string is...
4,406
Posted By helper
All, Thanks a for the commands. It worked
All, Thanks a for the commands. It worked
4,406
Posted By helper
All, Thanks for the commands. It worked.....
All,


Thanks for the commands. It worked.. Thanks a ton.
4,406
Posted By helper
Here goes the input file : Name of the file is...
Here goes the input file :
Name of the file is test
000000000XXXXXXX XXXXXXXX NOTIXABCDHH450
000000000XXXXXXX XXXXXXXX NOTIXABCDHH450...
4,406
Posted By helper
Exclude lines which have blanks at certain positions
Hi All,

I am getting a input file which doesnt have a field seperator. The file is being sorted on certain positions say from 0.55 to 0.59. If there are any blanks from 0.55 to 0.59 they will be...
3,148
Posted By helper
Use SED command to do the need.
First of all i dont think u need any scripts..
U can do with a single line command along with pipes
Here is the command

sed '/;/G' test | grep "SELECT" | sed -e :a -e '$!N;s/\n/~/g;ta' | tr "~"...
3,148
Posted By helper
Hey, a sample file would help me out in getting...
Hey, a sample file would help me out in getting what u want.
The reason for this is if a its a normal select statment then it completes in one line.
If the SQL statement has sub-queries which...
17,830
Posted By helper
Hey dude, this question was asked before.. kindly...
Hey dude, this question was asked before.. kindly check the replies for the same.
Anyways posting the reply.....


RETVAL=`sqlplus -s user/pwd@host <<EOF
SET SERVEROUTPUT ON SIZE 100000...
15,734
Posted By helper
Hi Rajesh, Use grep and sed...
Hi Rajesh,


Use grep and sed combinations to do the need.

grep "9063C0" test | sed 's/9063C0//'
where test is the file name.

OUTPUT :
===========
$> grep ^9063C0 test
9063C0 44...
15,734
Posted By helper
Use grep and sed combination
Hi Rajesh,


Use grep and sed combinations to do the need.

grep ^9063C0 test | sed 's/^9063C0//'
where test is the file name.

OUTPUT :
===========
$> grep ^9063C0 test
9063C0 44...
2,630
Posted By helper
Hi, Does dircmp check only for the matching...
Hi,

Does dircmp check only for the matching of file names present in the first folder with the second folder or does it compare for the contents of the both the files with the same name?


Hey...
2,190
Posted By helper
use find command for finding files.
Hi,

Use find command to display files only in the current directory.
First cd to that directory and then execute the following command
Usage :

find * -type f -print -o -type d -prune...
2,630
Posted By helper
Use dircmp
Hi,

Use dircmp command for finding all the files that are common in both the directories. Its available in Solaris.

Usage :
dircmp <directory1> <directory2>

Note : Give full path...
3,014
Posted By helper
Use Find command and tar for this.
Hey, use the "FIND" command along with tar command to zip the files greater than the specified size.
Go to the specified directory and execute the following command.....

Here is an eg :
find ....
Showing results 1 to 25 of 30

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