the first line will extract the first 500 lines into a new file without any sort. this is optional if you require this 500 lines to be present in the output.
The second command will extract lines from 500 till last and sort and will append the result in the previous file.
this will only take lines starting from 501 and do the sort.
Hi,
I am having trouble converting a text file. I have been working for this whole day now, still i couldn't make it.
Here is how the text file looks:
_______________________________________________________
DEVICE STATUS INFORMATION FOR LOCATION 1:
OPER STATES: Disabled E:Enabled ... (5 Replies)
cat file1.txt
field1 "user1":
field2:"data-cde"
field3:"data-pqr"
field4:"data-mno"
field1 "user1":
field2:"data-dcb"
field3:"data-mxz"
field4:"data-zul"
field1 "user2":
field2:"data-cqz"
field3:"data-xoq"
field4:"data-pos"
Now i need to have the date like below.
i have just... (7 Replies)
Scripting Guru's,
I need your help, can you tell me how i can check a file from a certain point onwards via a ksh script.
Currerntly i am checking the whole file and can't script it so it checks from 17.01.2012 20:00:00 onwards please..
Any help will be greatly appericated.
See file... (10 Replies)
Hi, I need somebody's help with sorting data with awk.
I've got a file:
10 aaa 4584
12 bbb 6138
20 ccc 4417
21 ddd 7796
10 eee 7484
12 fff ... (5 Replies)
Hello,
How to sort each row in a document with numerical values and with more than one row. Example
Input data (file1.txt):
4 6 8 1 7
2 12 9 6 10
6 1 14 5 7
and I want the the output to look like this(file2.txt):
1 4 6 7 8
2 6 9 10 12
1 5 6 7 14
I've tried
sort -n file1.txt >... (12 Replies)
Hi Guys,
I need some advice please.
My script is not grabbing information from a text file from a certain date correctly. It seems to be grabbing everying in the file, i know it is something simple but i have looked to hard and to long, to know what the issue is.
Script
awk '... (9 Replies)
Hi
I have output of a command saved in a file..
# cat /file.txt
System: cu=4 ent=0.1 mode=on
cu min u s w i
0 500 0.1 0.3 0.5 0.1
1 200 0.5 0.2 0.3 0.0
By using ksh, what I need to do is, I need to grep the u,s,w and i... (5 Replies)
this is the requirement
list.txt
table1
table2
table3
testfile.txt
name#place#data#select * from table1
name2#place2#data2#select * from table 10 innerjoin table3
name2#place2#data2#select * from table 10
output
name place table1
name2 place table3
i tried using awk (7 Replies)
how can i sort the table based on first row? thanks in advance
input
name d b c a
l l1 l2 l3 l4
l1 1 2 3 4
l2 2 2 2 1
l3 1 1 2 2ouput
name a b c d
l1 l4 ... (4 Replies)
I am trying to change the number in bold to 2400
01,000300032,193631306,190619,0640,1,80,,2/
02,193631306,000300032,1,190618,0640,CAD,2/
I'm not sure if sed or awk is the answer. I was going to use sed and do a character count up to that point, but that column directly before 0640 might... (8 Replies)
Discussion started by: juggernautjoee
8 Replies
LEARN ABOUT SUNOS
mlib_videocolorjfifycck2cmyk444
mlib_VideoColorJFIFYCCK2CMYK444(3MLIB) mediaLib Library Functions mlib_VideoColorJFIFYCCK2CMYK444(3MLIB)NAME
mlib_VideoColorJFIFYCCK2CMYK444 - JFIF YCbCr to CMYK color conversion
SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ]
#include <mlib.h>
mlib_status mlib_VideoColorJFIFYCCK2CMYK444(mlib_u8 *cmyk, const mlib_u8 *y, const mlib_u8 *cb, const mlib_u8 *cr, const mlib_u8 *k,
mlib_s32 n);
DESCRIPTION
The mlib_VideoColorJFIFYCCK2CMYK444() function performs color space conversion from YCbCr to CMYK when used in the JPEG File Interchange
Format (JFIF).
PARAMETERS
The function takes the following arguments:
cmyk Pointer to destination CMYK multi-component row. cmyk must be 8-byte aligned.
y Pointer to source Y component row. y must be 8-byte aligned.
cb Pointer to source Cb component row. cb must be 8-byte aligned.
cr Pointer to source Cr component row. cr must be 8-byte aligned.
k Pointer to source K component row. k must be 8-byte aligned.
n Length of Y,Cb,Cr, and K component rows. The length of the CMYK multi-component row must be n. The length of the RGB multi-
component row must be 4*n.
RETURN VALUES
The function returns MLIB_SUCCESS if successful. Otherwise it returns MLIB_FAILURE.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Evolving |
+-----------------------------+-----------------------------+
|MT-Level |MT-Safe |
+-----------------------------+-----------------------------+
SEE ALSO mlib_VideoColorCMYK2JFIFYCCK444(3MLIB), attributes(5)SunOS 5.10 9 Nov 2004 mlib_VideoColorJFIFYCCK2CMYK444(3MLIB)