Grep and convert into columns


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Grep and convert into columns
# 1  
Old 01-31-2013
Grep and convert into columns

I have 1000 different autosys jobs, want to extract only this information using unix commands.
Tried with normail greping but unable to make columns into rows.



Code:
Input: 

/* ----------------- template ----------------- */

insert_job: template job_type: c 
box_name: box1
command: /scripts/dsjobscript.sh abc_job_name
machine: localhost
owner: ABCD1@AB_CD_EF
permission: gx,ge,wx,we,mx,me
date_conditions: 1
days_of_week: all
start_times: "15:00, 14:00"
run_window: "14:00 - 6:00"
condition: s (job1)
description: "description field"
alarm_if_fail: 1

/* ----------------- Sample ----------------- */

insert_job: template job_type: c 
box_name: box2
command: /scripts/dsjobscript.sh Cri_info
machine: localhost
owner: ABCD1@AB_CD_EF
permission: gx,ge,wx,we,mx,me
date_conditions: 1
days_of_week: all
start_times: "15:00, 14:00"
run_window: "14:00 - 6:00"
condition: s (job1)
description: "description field"
alarm_if_fail: 1

/* ----------------- New ----------------- */

insert_job: New job_type: c 
box_name: box2
command: /scripts/dsjobscript.sh troppers
machine: localhost
owner: ABCD1@AB_CD_EF
permission: gx,ge,wx,we,mx,me
date_conditions: 1
days_of_week: all
start_times: "15:00, 14:00"
run_window: "14:00 - 6:00"
condition: s (job1)
description: "description field"
alarm_if_fail: 1


-----------------------------------------------------------------------

Output: 

Insert_Job,box_name,command, param
template,box1,/scripts/dsjobscript.sh abc_job_name,abc_job_name
Sample,box2,/scripts/dsjobscript.sh Cri_info,Cri_info
New,box2,/scripts/dsjobscript.sh troppers,troppers

# 2  
Old 01-31-2013
Code:
$  awk '/insert_job/{job=$2}/box_name/{box=$2}/command/{command=$2;param=$NF} job && box && command {print job","box","command","param;box=command=job=param="";}' input.txt
template,box1,/scripts/dsjobscript.sh,abc_job_name
template,box2,/scripts/dsjobscript.sh,Cri_info
New,box2,/scripts/dsjobscript.sh,troppers

---------- Post updated at 03:24 PM ---------- Previous update was at 03:20 PM ----------

didnt notice the params comes twice in output. so here is the changed one.

Code:
 
$ awk '/insert_job/{job=$2}/box_name/{box=$2}/command/{param=$NF;sub($1,"",$0);command=$0} job && box && command {print job","box","command","param;box=command=job=param="";}' input.txt
template,box1, /scripts/dsjobscript.sh abc_job_name,abc_job_name
template,box2, /scripts/dsjobscript.sh Cri_info,Cri_info
New,box2, /scripts/dsjobscript.sh troppers,troppers

# 3  
Old 01-31-2013
Thanks for swift responce.

Tried the below 2 commands some of the jobs doesnot having the param value then it is not working.



Code:
awk '/insert_job/{job=$2}/box_name/{box=$2}/command/{param=$NF;sub($1,"",$0);command=$0} job && box && command {print job","box","command","param;box=command=job=param="";}' input.txt

template,box1,/scripts/dsjobscript.sh
template,box2,/scripts/dsjobscript.sh
New,box2,/scripts/dsjobscript.sh
# 4  
Old 01-31-2013
try this... not tested...

Code:
 
$ awk '/insert_job/{job=$2}/box_name/{box=$2}/command/{if(NF>2){param=$NF;sub($1,"",$0);command=$0}else{command=$2}} job && box && command {print job","box","command","param;box=command=job=param="";}' input.txt

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Convert text to columns

Hi. I need an input file of a single word pr. line converted in into a list of random pairs. i need input like this word1 word2 word3 word4 to be outputted like this: word3 word1 word2 word4 My attempt is a tedious while loop like this: nfiles=$(cat inputfile | wc -l) ... (4 Replies)
Discussion started by: BotHead
4 Replies

2. Shell Programming and Scripting

Convert rows to columns

hi folks, I have a sample data like what is shown below: 1,ID=1000 1,Org=CedarparkHospital 1,cn=john 1,sn=doe 1,uid=User001 2,uid=User002 2,ID=2000 2,cn=steve 2,sn=jobs 2,Org=Providence I would like to convert it into the below format: 1,1000,CedarparkHospital,john,doe,User001... (11 Replies)
Discussion started by: vskr72
11 Replies

3. Shell Programming and Scripting

Convert rows to columns

I am looking to print the data in columns and after every 3 words it should be a new row. cat example.out | awk 'END { for (i = 0; ++i < m;) print _;print _ }{ _ = _ x ? _ OFS $1 : $1}' m=1| grep -i INNER I am looking to print in a new line after every 3 words. ... (2 Replies)
Discussion started by: lazydev
2 Replies

4. Shell Programming and Scripting

Convert Rows to Columns

Hi Everyone, Could someone shed some lights on how to convert the records in rows form into column basis. 172.29.59.12 IBM,8255-E8B 102691P 8 65536 MB 6100-04-11-1140 172.29.59.15 IBM,8255-E8B 102698P 4 45056 MB 6100-04-11-1140 IP SYS MODEL ... (6 Replies)
Discussion started by: ckwan
6 Replies

5. Shell Programming and Scripting

How to Convert rows in to columns?

Hi Gurus, How to convert rows in to columns using linux shell scripting Input is like (sample.txt) ABC DEF GHI JKL MNO PQR STU VWX YZA BCD output should be (sampleoutput.csv) ABC,DEF,GHI,JKL,MNO PQR,STU,VWX,YZA,BCD (2 Replies)
Discussion started by: infasriniit
2 Replies

6. Shell Programming and Scripting

Convert few columns to rows

Hi! Does anybody help me in converting following data: INPUT looks like this: 20. 100. 30 200. 40. 400. 50. 100. 60. 200. 70. 400. 80. 200. 150. 210. 30. 100. OUTPUT should look like this: 20. 100. 30 200. 40. 400. 50. 100. 60. 200. 70.... (5 Replies)
Discussion started by: lovelinux
5 Replies

7. Shell Programming and Scripting

convert rows to columns

hi, i have the file as below: abc def ghi jkl i want the output as abc,def,ghi,jki please reply, Thanks (4 Replies)
Discussion started by: namitai
4 Replies

8. Shell Programming and Scripting

convert columns into rows

hi, Apologies if this has been covered. I have requirement where i have to convert a single column into multiple column. My data will be like this - 2 3 4 5 6 Output required - 2 3 4 5 6 (1 Reply)
Discussion started by: Nishithinfy
1 Replies

9. Shell Programming and Scripting

convert rows into columns

Hi guys Could anyone advise me how to convert my rows into columns from a file My file would be similar to this: A11 A12 A13 A14 A15 ... A1n A21 A22 A23 A31 A41 A51 ... Am1 Am2 Am3 Am4 Am5 ... Amn The number of rows is not the same to the number of columns Thanks in advance (2 Replies)
Discussion started by: loperam
2 Replies

10. Shell Programming and Scripting

how to convert columns to rows

Hi, I need a shell script for below requirement Input file P1 - 173310 P2 - 173476 P3 - 173230 P4 - 172737 P1 - 173546 P2 - 173765 P3 - 173876 P4 - 172989 Out put file P1 173310 173546 P2 173476 173765 P3 173230 173876 P4 172737 172989 Suresh (6 Replies)
Discussion started by: suresh3566
6 Replies
Login or Register to Ask a Question