Summary: can someone help me. i want to combine two files together in awk (i have sh). Example: File1.txt 12345 10 12342 53221 3 File2.txt 53221 6 12345 8 1234...
Summary: I have two files: - EQUI containing two columns old_code and new_code - NAME containing a list of article with the old ones I code seek how to carr...
Summary: Hi All, I've seen many questions/answers about combining or merging two files using awk but I can't quite get them to work for my situation. It's poss...
Summary: hi! i have 3 text files with different patterns. (actualy they are lists of files in different formats) what i need to do is write script that produce...
Summary: Hi All, I have two files file1: abc,def,ghi,5,jkl,mno pqr,stu,ghi,10,vwx,xyz cba,ust,ihg,4,cdu,oqw file2: ravi,def,kishore ramu,ust,krishna joseph,stu...
Summary: Hello there, Please help. I would like to know how to put two different files together in one, an be able to print specific fields(ex.first field of ...
Summary: Would be very grateful for some advice... I am trying to use awk to create a flat file of two-field records from a large dataset containing re...
Summary: Hi experts, I need to compare two files and get the difference between the two files. F1 is the base file.I need to print out all the lines missing in...
Summary: Hi All, I have two files. cat numbers.csv 9999500123,A,B,CFGGH 01199234984,S,D,CFGde 0023445875554,sddf,fhh,wwr cat prefix.csv 9999,jpr,3.12,60 01199...
Summary: Hi, compare two files and difference will be moved into separate file.if anybody having code for this please send asap. using diff command how can w...
Summary: how can i join two files together without using more diskspace than before? that is, i dont want a third file or the second file copied to the end of ...
Summary: I have written a script to awk a file, which beings with STATUS_MESSAGE and read a parameter $STCODE. It should read the second column in the text fi...
Summary: Hey, I need helping writing a KORN shell script that will search my directories for minimum two files to pass back to the script as arguments. I am ...
Summary: Hi , I wish to know how to combine two files to one file using unix command. I had two files aaa and bbb aaa files: 02 02 02 02 02 02 and bbb files :...
Summary: Can anyone help me with shell script to this problem. I have two files as shown below. I want to loop through the two files by comparing column1, row...
Summary: Kindly please assit me to compare two files in perl or any other script: I have two files: File1.abc start prog name cadillac ggg abc ttt fff start p...
Summary: It's a kludge, but the only way I can think to do it is to create a file of numbers sorted in reverse, reverse the datafile, and then paste the two fi...
Summary: HI I need a unix script to merge two files in a specific manner Eg: File 1 1 2 4 5 File 2 3 5 Final output file looks like 1 2 3 4 5 6 Please respon...