Sponsored Content
Top Forums Shell Programming and Scripting Adding the data before file extension Post 302520587 by ahamed101 on Sunday 8th of May 2011 09:39:51 AM
Old 05-08-2011
Try this

Code:
awk '/^#pro/{t=match($5,/[0-9]/,_1);if(t==0){split($5,_2,"."); $5=_2[1]".1."_2[2]}}{print}' file

regards,
Ahamed
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Adding an extension to a group of filenames

Hi - I'm stuck. I have a group of text files created using the split command. My files have the names "projectaa", "projectab", "projectac", etc. What I want to do is add the extension ".txt" to each file. I think I've got part of a sed command together, but I'm stuck on my regex - I keep getting... (9 Replies)
Discussion started by: pepintheshort
9 Replies

2. Shell Programming and Scripting

Need Help for Adding Three new columns in existing file from fatching data from file

not required this time (36 Replies)
Discussion started by: Sandeep_Malik
36 Replies

3. Shell Programming and Scripting

adding the data at a specified location in a file....

Hi all, I m new to shell programming..Can anyone please guide me how to insert data at a specified location in the file.. I have a configuration file..I want to add data to it through script..I am able to do it...I get that data written at end of my configuration file..I want data to be placed at... (3 Replies)
Discussion started by: divya_flora
3 Replies

4. Shell Programming and Scripting

How to split a file with adding sequence number and extension.

I have a file name -HRCFTSIN05PLA1602100430444444 my requirement is to split the file in 10000 count each file and to add sequence number.rch at the end of each file. output should be in this format HRCFTSIN05PLA160210043044444401.rch HRCFTSIN05PLA160210043044444402.rch... (4 Replies)
Discussion started by: abhigrkist
4 Replies

5. Shell Programming and Scripting

Adding lines to files based on file extension

I have posted this before but did not get many replies, so here it goes again. I have several files name like this If the file extension is 1a, I woould like to add at the beggining of the file the following sequence If the file extension is 1b, thn the entry that should be added is the next... (2 Replies)
Discussion started by: Xterra
2 Replies

6. Shell Programming and Scripting

Adding data in a file on same line

Hi, I have one file a.txt ,the contents of the file is A B C D E F and I have another file b.txt, the contents of the file is 1 2 3 4 5 6 now when I am using this command cat a.txt b.txt > c.txtI am getting the output as A B C D E F 1 2 3 4 5 6 but i need the output... (2 Replies)
Discussion started by: prarat
2 Replies

7. Shell Programming and Scripting

Adding number before file extension

Hi , I have a file which has a line starts with $segment_name and has the below data source data $Segment_Name = 123.ABC.123.01.txt $Segment_Name = 123.ABC.ABC.txt $Segment_Name = 123.ABC.12A3.txtMy target data should be $Segment_Name = 123.ABC.123.01.txt $Segment_Name =... (2 Replies)
Discussion started by: shruthidwh
2 Replies

8. Shell Programming and Scripting

Help in adding a data after a particular line of data in a file.

Hi.. I'm into a bump after trying to solve this prob.. i've a file with contents like below. <blankline> 'pgmId' : 'UNIX', 'pgmData' : 'textfile', 'author' : 'admin', ....... Now i'm trying to insert a new data after pgmId. so the final output will be... (7 Replies)
Discussion started by: arjun_arippa
7 Replies

9. Red Hat

Adding a data file

I need to add a data file, but my user account doesn't have privileges. I have connected to the oracle as sqlplus / as sysdba and it is telling me I'm connect to an idle instance. How can I connect to my database and create a data file if I don't know the passwords of any of the account that have... (1 Reply)
Discussion started by: FaSho76
1 Replies

10. Shell Programming and Scripting

Adding a comment in a file next to data

Dear Gurus, I have a file which comes every day with set of data, as a part of processing i want to add a comment at the start of every line. e.g of file <PCL> 2E;"HCA";"COP Car A";"ODBS_CFG" 7C;"DD";"Doors Car D";"ODBS_CFG" 3D;"XA";"Auxiliary Car A";"ODBS_CFG" 3E;"XB";"Auxiliary... (12 Replies)
Discussion started by: guddu_12
12 Replies
XQueryExtension()														 XQueryExtension()

Name
  XQueryExtension - get extension information.

Synopsis
  Bool XQueryExtension(display, name, major_opcode_return, first_event_return, first_error_return)
	Display *display;
	char *name;
	int *major_opcode_return;
	int *first_event_return;
	int *first_error_return;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  name	    Specifies the name of the desired extension.  Uppercase or lowercase is important.	If the extension name is not in the Host Por-
	    table Character Encoding, the result is implementation-dependent.

  major_opcode_return
	    Returns the major opcode of the extension, for use in error handling routines.

  first_event_return
	    Returns the code of the first custom event type created by the extension.

  first_error_return
	    Returns the code of the first custom error defined by the extension.

Returns
  True if the extension is present, else False.

Description
  XQueryExtension() determines if the named extension is present, and returns True if it is.  If so, the routines in  the  extension  can  be
  used just as if they were core Xlib requests, except that they may return new types of events or new error codes.  The available extensions
  can be listed with XListExtensions().

  The major_opcode_return for the extension is returned, if it has one.  Otherwise, zero is returned.  This opcode will appear in errors gen-
  erated in the extension.

  If  the extension involves additional event types, the base event type code is returned in first_event_return.  Otherwise, zero is returned
  in first_event_return.  The format of the events is specific to the extension.

  If the extension involves additional error codes, the base error code is returned in first_error_return.  Otherwise, zero is returned.  The
  format of additional data in the errors is specific to the extension.

  See  Volume  One,  Chapter  15, Other Programming Techniques, for more information on using extensions, and Volume One, Appendix C, Writing
  Extensions to X, for information on writing them.

See Also
  XFreeExtensionList(),  XListExtensions().

Xlib - Extensions														 XQueryExtension()
All times are GMT -4. The time now is 12:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy