Search Results

Search: Posts Made By: ranj@chn
Forum: Programming 05-19-2006
65,970
Posted By ranj@chn
compile proc
First generate the .c code from .pc.
proc -iname=filename.pc

Then generate the .o file
cc -I${ORACLE_HOME}/precomp/public -c filename.c

After that link the .o to libraries and produce the...
69,170
Posted By ranj@chn
see if it works
Put this is a file - testawk.awk
BEGIN {FS=","}

{
for (i=1;i<=NF;i++)
{
arr[NR,i]=$i;
if(big <= NF)
big=NF;
}
}

END {
for(i=1;i<=big;i++)
{
for(j=1;j<=NR;j++)
{
...
1,689
Posted By ranj@chn
a try
cp $f1 $tmpf1 #make temp files
cp $f2 $tmpf2 #make temp files
no_list=$(awk '{print $3}' $tmpf1 $tmpf2 |sed '/^$/d'|sort -un)
last_no=$(awk '{print $3}' $tmpf1 $tmpf2 |sed '/^$/d'|sort -un|tail...
Showing results 1 to 3 of 3

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