Sponsored Content
Full Discussion: merging two files
Top Forums Shell Programming and Scripting merging two files Post 52856 by rameshonline on Monday 28th of June 2004 11:45:45 AM
Old 06-28-2004
hi perdarabo,

i am sorry to miss out an important point above.. My second file also can have inserts at the end but not in the middle...so if we do cp we will loose second file changes.

(to put it differently, i am looking at two files which are same at first but after sometime both will change)
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

merging files

Thanks in advance I have 2 files having key field in each.I would like to join both on common key.I have used join but not sucessful. The files are attached here . what i Want in the output is on the key field SLS OFFR . I have used join commd but not successful. File one ======= SNO ... (6 Replies)
Discussion started by: vakharia Mahesh
6 Replies

2. Shell Programming and Scripting

Merging 2 files

Hi, I have got two files 1.txt 1111|apple| 2222|orange| 2.txt 1111|1234|000000000004356| 1111|1234|000000001111| 1111|1234|002000011112| 2222|5678|000000002222| 2222|9102|000000002222| I need to merge these two so that my out put looks like below: Search code being used should be... (4 Replies)
Discussion started by: jisha
4 Replies

3. Shell Programming and Scripting

Help with merging files

i would like to merge two files that have the same format but have different data. i would like to create one output file that contains information from both the original files.:rolleyes: (2 Replies)
Discussion started by: joe black
2 Replies

4. Shell Programming and Scripting

merging of files.

Hi, I want to merge the two files on the basis of columns like... file 1 Data Key A 12 B 13 file2 Data Value A A1 A A2 B B1 B B2 (5 Replies)
Discussion started by: clx
5 Replies

5. UNIX for Dummies Questions & Answers

Merging two files

Hi, I have two files a.txt and b.txt. a.txt 1 2 3 4 b.txt a b c d e I want to generate a file c.txt by merging these two file and the resultant file would contain c.txt 1 (4 Replies)
Discussion started by: siba.s.nayak
4 Replies

6. Shell Programming and Scripting

Merging files

I have two files file 1 containing x rows and 1 column file 2 containing x rows and 1 column I want to merge both the files and add a comma between the two eg plz guide (1 Reply)
Discussion started by: test_user
1 Replies

7. Shell Programming and Scripting

Merging two files with same name

Hello all, I have limited experience in shell scripting. Here goes my question: I have two directories that have same number of files with same file names i.e. consider 2 directories A and B. Both directories have files 1.txt, 2.txt...... I need to merge the file 1.txt of A with file 1.txt... (5 Replies)
Discussion started by: jaysean
5 Replies

8. Shell Programming and Scripting

Help with merging 2 files into 1

::::::::: ::FileA:: ::::::::: A1-------A2--------A3---A4---A5-- ================================= AC5VXVLT-XX---------------------- B57E434--XXXX1-----MMMM-ZZZ--111- C325G20--XXXXX3----CCCC------3332 DC35S51--XXXXY1----DDDD------44X- DC35S52--XXXXY2----DDDD------44Y-... (5 Replies)
Discussion started by: lordsmiter
5 Replies

9. Shell Programming and Scripting

Merging two files

Guys, I am having little problem with getting a daily report! The daily process that I do is as follows 1. Unload Header for the report from the systables to one unl file, say Header.unl 2. Unload the data from the required table/tables to another unl file, say Data.unl 3. Send a... (2 Replies)
Discussion started by: PikK45
2 Replies

10. Shell Programming and Scripting

Merging two files

Hi All , I have a scenario where we need to combine two files . Below are the sample files and expected output , File 1: 1|ab 1|ac 1|ae 2|ad 2|ac File 2: 1|xy 1|fc 2|gh 2|ku Output file : 1|ab|xy (3 Replies)
Discussion started by: saj
3 Replies
XrmStringToQuarkList()													    XrmStringToQuarkList()

Name
  XrmStringToQuarkList - convert a key string to a quark list.

Synopsis
  void XrmStringToQuarkList(string, quarks_return)
	  char *string;
	  XrmQuarkList quarks_return;

Arguments
  string    Specifies the string for which a list of quarks is to be generated.  Must be NULL-terminated.  The components may be separated by
	    the dot (.) character (tight binding) or the asterisk (*) character (loose binding).

  quarks_return
	    Returns the list of quarks.

Description
  XrmStringToQuarkList() converts string (generally a fully qualified name/class string) to a list of quarks.  If the string is  not  in  the
  Host Portable Character Encoding, the conversion is implementation-dependent.  Components of the string may be separated by a tight binding
  (the "." character) or a loose binding ("*").  Use XrmStringToBindingQuarkList() for lists which contain both  tight	and  loose  bindings.
  See XrmGetResource() for a description of tight and loose binding.

  Each	component  of  the string is individually converted into a quark.  See XrmStringToQuark() for information about quarks and converting
  strings to quarks.  quarks_return is a NULL-terminated list of quarks.

  For example, xmh.toc.command.background is converted into a list of four quarks:  the quarks for xmh, toc, command, and background, in that
  order.  A NULLQUARK is appended to the end of the list.

  Note	that  XrmStringToNameList and XrmStringToClassList are macros that perform exactly the same function as XrmStringToQuarkList(). These
  may be used in cases where they clarify the code.

  For more information, see Volume One, Chapter 13, Managing User Preferences.

Structures
     typedef int XrmQuark *XrmQuarkList;

     #define XrmStringToNameList(str, name)  XrmStringToQuarkList((str), (name))
     #define XrmStringToClassList(str,class) XrmStringToQuarkList((str), (class))

See Also
  XrmDestroyDatabase(), XrmGetFileDatabase(), XrmGetResource(), XrmGetStringDatabase(),  XrmInitialize(),  XrmMergeDatabases(),  XrmParseCom-
  mand(),  XrmPutFileDatabase(),  XrmPutLineResource(),  XrmPutResource(),  XrmPutStringResource(),  XrmQGetResource(),  XrmQGetSearchList(),
  XrmQGetSearchResource(), XrmQPutResource(), XrmQPutStringResource(), XrmQuarkToString(), XrmStringToBindingQuarkList(), XrmStringToQuark(),
  XrmStringToRepresentation, XrmUniqueQuark().

Xlib - Resource Manager 												    XrmStringToQuarkList()
All times are GMT -4. The time now is 06:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy