Sponsored Content
Top Forums Shell Programming and Scripting Taking a particular attribute's value in a file... Post 302269958 by rujuta_rahalkar on Friday 19th of December 2008 07:10:01 AM
Old 12-19-2008
I have just made a small addition to the previous code ..


cat test | awk ' $0 ~ /Additional Text/ { print $0; getline;
while ( $0 !~ /Original Severity/ )
{
print $0;
getline;
}
}
' | sed -e 's/Additional Text = //g'

The output of this will be the text after the =...
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

File Created On attribute

Hi, I need to find out when a file has been created. 'ls -l' just lists the last date the file was modified. I have also noticed when viewing the attributes through NT, the last modified date is the same as the file creation date. I thought maybe this was a fault due to samba. I guess what... (1 Reply)
Discussion started by: dpalmer
1 Replies

2. Linux

File attribute Help please

Could anyone help i have a question that i have a problem with for my home work it is, How do i change file permissions in a command line enviromet thanx (1 Reply)
Discussion started by: Cube3k
1 Replies

3. Programming

UNIX->C++ File attribute

Hi to all, I need in Microsoft C++ to IDENTIFY unix files which are LINKS. I use CFTPFILEFIND class. Thanks :-) .:rolleyes: (0 Replies)
Discussion started by: mizrachi
0 Replies

4. Shell Programming and Scripting

Changing attribute value in xml file using shell

I have an xml file.I want to change the value of some tag: <WASConfig version='1.1'> <JavaVirtualMachine> <scope> <server> <hostNode>myAsNode</hostNode> <name>myserver</name> </server> </scope> <Settings> <Setting> ... (5 Replies)
Discussion started by: javaholics
5 Replies

5. Shell Programming and Scripting

How to ftp multiple files by taking the file name from a input file.

Hi, I'm working on a script which has to copy multiple files from one server to another server. The list of files that are to be copied is present in a file say input.txt. vi input.txt abc.c welcome.c new.c welcome1.c for ftp'ing a single file say 'new.c' the following code... (2 Replies)
Discussion started by: i.srini89
2 Replies

6. Shell Programming and Scripting

Installing a bin file by taking input from a properties file

I need to install a bin file in UNIX which requires user interaction for giving some information like user id , path, sid etc. All these information is stored in a properties file in the same location. So if i give ./file.bin -f propfile.properties will it install the file taking all the... (1 Reply)
Discussion started by: coolmohere
1 Replies

7. Red Hat

(.) at the end of file attribute.

Hi Linux Experts, I am using RHEL 6.4, on checking I identified some files ends with the file attribute like dot (.) at the end. Whereas, I checked with the same level of other servers and I don't identify dot(.) at the end of file attribute. Why is it so? is there any meaning for it. ... (3 Replies)
Discussion started by: gsiva
3 Replies

8. UNIX for Dummies Questions & Answers

Taking word count from file and printing in file

hi, i am having a file which contains the below content, i need to take the word count of if and print the file name also inputfile.txt file_name1.txt,type_name1.txt file_name2.txt,type_name2.txt i would need the word count of the files like this if file_name*.txt then wc -l... (10 Replies)
Discussion started by: rohit_shinez
10 Replies

9. Shell Programming and Scripting

Search pattern in a file taking input from another file

Hi, Below is my requirement File1: svasjsdhvassdvasdhhgvasddhvasdhasdjhvasdjsahvasdjvdasjdvvsadjhv vdjvsdjasvdasdjbasdjbasdjhasbdasjhdbjheasbdasjdsajhbjasbjasbhddjb svfsdhgvfdshgvfsdhfvsdadhfvsajhvasjdhvsajhdvsadjvhasjhdvjhsadjahs File2: sdh hgv I need a command such that... (8 Replies)
Discussion started by: imrandec85
8 Replies

10. Shell Programming and Scripting

Script to check the string in a file and print an attribute in the message

Hi, I am new to shell scripting and got a task to complete. Task is : we have a log file where in i need to traverse through the whole file to check the string "Person Type missing in message" and after that i need to get EMPLID=xxxxxx from the file and print details in a different file. ... (1 Reply)
Discussion started by: suren424
1 Replies
mlib_ImageDataTypeConvert(3MLIB)			    mediaLib Library Functions				  mlib_ImageDataTypeConvert(3MLIB)

NAME
mlib_ImageDataTypeConvert - data type conversion SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ] #include <mlib.h> mlib_status mlib_ImageDataTypeConvert(mlib_image *dst, const mlib_image *src); DESCRIPTION
The mlib_ImageDataTypeConvert() function converts between data types MLIB_BIT, MLIB_BYTE, MLIB_SHORT, MLIB_USHORT, MLIB_INT, MLIB_FLOAT, and MLIB_DOUBLE. The input and output data images must have the same width, height, and number of channels. Conversion to a smaller pixel format clamps the source value to the dynamic range of the destination pixel. See the following table for available variations of the data type conversion function. Source Type Dest. Type Action MLIB_BYTE MLIB_BIT (x > 0) ? 1 : 0 MLIB_SHORT MLIB_BIT (x > 0) ? 1 : 0 MLIB_USHORT MLIB_BIT (x > 0) ? 1 : 0 MLIB_INT MLIB_BIT (x > 0) ? 1 : 0 MLIB_FLOAT MLIB_BIT (x > 0) ? 1 : 0 MLIB_DOUBLE MLIB_BIT (x > 0) ? 1 : 0 MLIB_BIT MLIB_BYTE (x == 1) ? 1 : 0 MLIB_SHORT MLIB_BYTE (mlib_u8)clamp(x, 0, 255) MLIB_USHORT MLIB_BYTE (mlib_u8)clamp(x, 0, 255) MLIB_INT MLIB_BYTE (mlib_u8)clamp(x, 0, 255) MLIB_FLOAT MLIB_BYTE (mlib_u8)clamp(x, 0, 255) MLIB_DOUBLE MLIB_BYTE (mlib_u8)clamp(x, 0, 255) MLIB_BIT MLIB_SHORT (x == 1) ? 1 : 0 MLIB_BYTE MLIB_SHORT (mlib_s16)x MLIB_USHORT MLIB_SHORT (mlib_s16)clamp(x, -32768, 32767) MLIB_INT MLIB_SHORT (mlib_s16)clamp(x, -32768, 32767) MLIB_FLOAT MLIB_SHORT (mlib_s16)clamp(x, -32768, 32767) MLIB_DOUBLE MLIB_SHORT (mlib_s16)clamp(x, -32768, 32767) MLIB_BIT MLIB_USHORT (x == 1) ? 1 : 0 MLIB_BYTE MLIB_USHORT (mlib_u16)x MLIB_SHORT MLIB_USHORT (mlib_u16)clamp(x, 0, 65535) MLIB_INT MLIB_USHORT (mlib_u16)clamp(x, 0, 65535) MLIB_FLOAT MLIB_USHORT (mlib_u16)clamp(x, 0, 65535) MLIB_DOUBLE MLIB_USHORT (mlib_u16)clamp(x, 0, 65535) MLIB_BIT MLIB_INT (x == 1) ? 1 : 0 MLIB_BYTE MLIB_INT (mlib_s32)x MLIB_SHORT MLIB_INT (mlib_s32)x MLIB_USHORT MLIB_INT (mlib_s32)x MLIB_FLOAT MLIB_INT (mlib_s32)clamp(x, -2147483647-1, 2147483647) MLIB_DOUBLE MLIB_INT (mlib_s32)clamp(x, -2147483647-1, 2147483647) MLIB_BIT MLIB_FLOAT (x == 1) ? 1.0 : 0.0 MLIB_BYTE MLIB_FLOAT (mlib_f32)x MLIB_SHORT MLIB_FLOAT (mlib_f32)x MLIB_USHORT MLIB_FLOAT (mlib_f32)x MLIB_INT MLIB_FLOAT (mlib_f32)x MLIB_DOUBLE MLIB_FLOAT (mlib_f32)x MLIB_BIT MLIB_DOUBLE (x == 1) ? 1.0 : 0.0 MLIB_BYTE MLIB_DOUBLE (mlib_d64)x MLIB_SHORT MLIB_DOUBLE (mlib_d64)x MLIB_USHORT MLIB_DOUBLE (mlib_d64)x MLIB_INT MLIB_DOUBLE (mlib_d64)x MLIB_FLOAT MLIB_DOUBLE (mlib_d64)x The actions are defined in C-style pseudo-code. All type casts follow the rules of standard C. clamp() can be defined as a macro: #define clamp(x, low, high) (((x) < (low)) ? (low) : (((x) > (high)) ? (high) : (x))) PARAMETERS
The function takes the following arguments: dst Pointer to destination image. src Pointer to source image. 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_ImageReformat(3MLIB), attributes(5) SunOS 5.10 9 Nov 2004 mlib_ImageDataTypeConvert(3MLIB)
All times are GMT -4. The time now is 02:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy