Desired output.txt for reading txt file using awk?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Desired output.txt for reading txt file using awk?
# 1  
Old 02-06-2015
Desired output.txt for reading txt file using awk?

Dear all,
I have a huge txt file (DATA.txt) with the following content [1]. From this txt file, I want the following output [2] using some shell script.

Any help is greatly appreciated.

Greetings,
emily


[1] DATA.txt (snippet of the huge text file)
Code:
      407202849 /abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_54.root
      407077407 /abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_93.root
      407018097 /abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_74.root
      406859364 /abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_171.root
      406739941 /abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_112.root
      407261262 /abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_107.root
      407080550 /abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_18.root

[2] Output
Code:
     infile=['/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_54.root']
      infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_93.root')
      infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_74.root')
      infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_171.root')
      infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_112.root')
      infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_107.root')
      infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_18.root')

# 2  
Old 02-06-2015
Hello emily,

Could you please try following code and let me know if this helps.
Code:
awk -vs="'" -vs1="infile=[" -vs2="]" -vs3="infile.append(" -vs4=")" '(NR==1){print s1 s $2 s s2} (NR>1){print s3 s $2 s s4}'  Input_file

Output will be as follows.
Code:
infile=['/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_54.root']
infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_93.root')
infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_74.root')
infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_171.root')
infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_112.root')
infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_107.root')
infile.append('/abcd/directory/sub_directory/Samsung/150206_135953/0000/L1ITMBLT_18.root')

NOTE: Considering your Input_file doesn't have spaces in starting.


Thanks,
R. Singh
This User Gave Thanks to RavinderSingh13 For This Post:
# 3  
Old 02-06-2015
Great, perfect..Smilie Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Awk, sed, shell all words in INPUT.txt find in column1 of TABLE.txt and replce with column2 in

Hi dears i have text file like this: INPUT.txt 001_1_173 j nuh ]az 001_1_174 j ]esma. nuh ]/.xori . . . and have another text like this TABLE.txt j j nuh word1... (6 Replies)
Discussion started by: alii
6 Replies

2. Shell Programming and Scripting

Need to append the date | abcddate.txt to the first line of my txt file

I want to add/append the info in the following format to my.txt file. 20130702|abcd20130702.txt FN|SN|DOB I tried the below script but it throws me some exceptions. <#!/bin/sh dt = date '+%y%m%d'members; echo $dt+|+members+$dt; /usr/bin/awk -f BEGIN { FS="|"; OFS="|"; } { print... (6 Replies)
Discussion started by: harik1982
6 Replies

3. Shell Programming and Scripting

Reading txt files using the awk

Dear Shell scripters, I have a small code which copy the txt files from some destination to file name OutPutFile. I want to modify this script to introduce several constant. The string it is reading is like ... (2 Replies)
Discussion started by: nrjrasaxena
2 Replies

4. Shell Programming and Scripting

awk append fileA.txt to growing file B.txt

This is appending a column. My question is fairly simple. I have a program generating data in a form like so: 1 20 2 22 3 23 4 12 5 43 For ever iteration I'm generating this data. I have the basic idea with cut -f 2 fileA.txt | paste -d >> FileB.txt ???? I want FileB.txt to grow, and... (4 Replies)
Discussion started by: theawknewbie
4 Replies

5. Programming

Reading a particular line from a .txt file

Hi, I have a .txt file which contains the x, y and z co-ordinates of particles which I am trying to cast for a particular compound. The no. of particles present is of the order of 2 billion and hence the size of the text file is of the order of a few Gigabytes. The particles have been casted layer... (5 Replies)
Discussion started by: mugga
5 Replies

6. Shell Programming and Scripting

AWK CSV to TXT format, TXT file not in a correct column format

HI guys, I have created a script to read 1 column in a csv file and then place it in text file. However, when i checked out the text file, it is not in a column format... Example: CSV file contains name,age aa,11 bb,22 cc,33 After using awk to get first column TXT file... (1 Reply)
Discussion started by: mdap
1 Replies

7. UNIX for Dummies Questions & Answers

Binary txt file received when i use uuencode to send txt file as attachment

Hi, I have already read a lot of posts on sending attachments in unix...but none of them were of help for my problem...so here goes.. i wanna attach a text file and send to a mail id..used the following code : uuencode "$File1" "$File1" ;|mail -s "$Mail_sub" abc@abc.com it works... (2 Replies)
Discussion started by: ash22
2 Replies

8. Shell Programming and Scripting

reading the txt file

hi to all im having some 20,000 files in that im having some contents say the tabulation of biophysics lab readings ... and i want read tat file and look into tat wether a number say -18.90 is there r not .. and if there print tat no wit file name beside thank you:D (1 Reply)
Discussion started by: maximas
1 Replies

9. Shell Programming and Scripting

Sorting problem "sort -k 16,29 sample.txt > output.txt"

Hi all, Iam trying to sort the contents of the file based on the position of the file. Example: $cat sample.txt 0101020060731 ## Header record 1c1 Berger Awc ANP20070201301 4000.50 1c2 Bose W G ANP20070201609 6000.70 1c2 Andy CK ANP20070201230 28000.00... (3 Replies)
Discussion started by: ganapati
3 Replies

10. Shell Programming and Scripting

Reading Characters from txt file

Hello, I am new to shell scripting, and I am trying to create a script that reads an input like the following firstname:lastname:age firstname:lastname:age firstname:lastname:age in a text file. I have a 2 part question. First how do I open the file in a shell script. And then how can... (7 Replies)
Discussion started by: TexasGuy
7 Replies
Login or Register to Ask a Question