Sponsored Content
Full Discussion: Parse input -AWK
Top Forums Shell Programming and Scripting Parse input -AWK Post 302634809 by greycells on Thursday 3rd of May 2012 10:37:47 PM
Old 05-03-2012
Parse input -AWK

Input File


Code:
 
Defined configuration:
cfg:   CLL_DCC_Fabric_A        
                BTS00P21; BAU_AP00P01QC; BAU_LGSCNJP02; BAU_TS00P20; 
                BAU_DSMSM14; BAU_HT00P02; BAU_DSMSM13; BAU_HT00P01; 
cfg:   CX0014_list     
                BAU_TS00P20; BAU_NYP_PRODIAD1_CJ; BAU_NYP_FILESRV4_CJ; 
                BAU_NYP_DNET01_CJ; BAU_NYP_ERECIISA_CJ; BAU_FNGBPD1OSA; 
zone:  BAU_AE00T11     
                C0:50:76:01:C6:20:00:12; 50:06:01:69:47:20:07:FC; 
                50:06:01:60:47:20:07:FC
zone:  BAU_NYP_SHPTSQL2_CJ     
                10:00:00:00:C9:77:DC:80; 50:06:01:60:3C:A0:13:47; 
                50:06:01:69:3C:A0:13:47; 50:06:01:60:47:20:01:D4; 
                50:06:01:69:47:20:01:D4
alias: AE00T10_AB97    
                10:00:00:00:C9:8C:AB:97
alias: AI00P01_4B17    
                10:00:00:00:C9:4B:4B:17
Effective configuration:
cfg:   CLL_DCC_Fabric_A        
zone:  BAU_AE00T11     
                c0:50:76:01:c6:20:00:12
                50:06:01:69:47:20:07:fc
                50:06:01:60:47:20:07:fc
zone:  BAU_AE00T13     
                c0:50:76:01:c6:20:00:06
                50:06:01:69:47:20:07:fc
                50:06:01:60:47:20:07:fc

Output needed

Code:
 
Defined:CLL_DCC_Fabric_A:BAU_AE00T11,C0:50:76:01:C6:20:00:12,50:06:01:69:47:20:07:FC,50:06:01:60:47:20:07:FC
Defined:CLL_DCC_Fabric_A:BAU_NYP_SHPTSQL2_CJ,10:00:00:00:C9:77:DC:80,50:06:01:60:3C:A0:13:47,50:06:01:69:3C:A0:13:47,50:06:01:60:47:20:01:D4,50:06:01:69:47:20:01:D4
Effective:CLL_DCC_Fabric_A:BAU_AE00T11,c0:50:76:01:c6:20:00:12,50:06:01:69:47:20:07:fc,50:06:01:60:47:20:07:fc
Effective:CLL_DCC_Fabric_A:BAU_AE00T13,c0:50:76:01:c6:20:00:06,50:06:01:69:47:20:07:fc,50:06:01:60:47:20:07:fc

Only looking for the info in the "zone:" lines - Thx
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

AWK unable to parse

awk -v new=" " ' substr($0, 17, 3) == "ABC" && substr($0, 52, 8) == "00000000" { tr=substr($0, 20, 10); ap=substr($0, 30, 2); ver=substr($0, 32, 2); irver=substr($0, 34, 2); ... (12 Replies)
Discussion started by: COD
12 Replies

2. Shell Programming and Scripting

Shell script to parse/split input string and display the tokens

Hi, How do I parse/split lines (strings) read from a file and display the individual tokens in a shell script? Given that the length of individual lines is not constant and number of tokens in each line is also not constant. The input file could be as below: ... (3 Replies)
Discussion started by: yajaykumar
3 Replies

3. Shell Programming and Scripting

parse long input parameters

anybody know a nice way to parse long input parameters such as --path /dir1/dir2/ (see below). Now I have more than 10 input parameters and it's confusing having parameters like -q something, I would prefer longer ones case $OPTKEY in --path) M_PATH=$OPTARG ;; -s) ... (3 Replies)
Discussion started by: larne
3 Replies

4. Shell Programming and Scripting

Parse file using awk and work in awk output

hi guys, i want to parse a file using public function, the file contain raw data in the below format i want to get the output like this to load it to Oracle DB MARWA1,BSS:26,1,3,0,0,0,0,0.00,22,22,22.00 MARWA2,BSS:26,1,3,0,0,0,0,0.00,22,22,22.00 this the file raw format: Number of... (6 Replies)
Discussion started by: dagigg
6 Replies

5. Shell Programming and Scripting

Parse a file with awk?

Hi guys (and gals). I need some help. I'm running an IVR purely on Asterisk where I capture the DTMFs. After pulsing each DTMF I have Asterisk write to a file with whatever was dialed (mostly used for record-keeping) and at the end of the survey I write all variables in a single line to a... (2 Replies)
Discussion started by: tulf210
2 Replies

6. Shell Programming and Scripting

Bash Script for parse input like option and value

I would create a bash script than parse like this: test.sh -p (protocol) -i (address) -d (directory) I need retrive the value after -p for example... understand??? I hope... thanks (6 Replies)
Discussion started by: ionral
6 Replies

7. Shell Programming and Scripting

Parse find input into array

I need help parsing the output of find into an array. I need to search 3 directories and find all files older than 31 days old. This is what I have so far. TIME=" -maxdepth 1 -mtime +31" DIR1="/dir1/" DIR2="/dir2/" DIR3="/dir3/" FIND_DIR1=$(find ${DIR1}${TIME}) FIND_DIR3=$(find... (8 Replies)
Discussion started by: jrymer
8 Replies

8. Shell Programming and Scripting

Parse a file using awk

Hi Experts, I am trying to parse the following file; FILEA a|b|c|c|c|c a|b|d|d|d|d e|f|a|a|a|a e|f|b|b|b|boutput expected: a<TAB>b <TAB><TAB>c<TAB>c<TAB>c<TAB>c<TAB> <TAB><TAB>d<TAB>d<TAB>d<TAB>d<TAB> e<TAB>f <TAB><TAB>a<TAB>a<TAB>a<TAB>a<TAB> <TAB><TAB>b<TAB>b<TAB>b<TAB>b<TAB>*... (7 Replies)
Discussion started by: rajangupta2387
7 Replies

9. Shell Programming and Scripting

Parse input of two files to be the same in awk

I have two files that I am going to use diff to find the differences but need to parse them before I do that. I have include the format of each file1 and file2 with the desired output of each (the first 5 fields in each file). The first file has a "chr" before the # that needs to be removed. I... (1 Reply)
Discussion started by: cmccabe
1 Replies

10. Shell Programming and Scripting

User input and run awk using the input

I am trying to allow a user to enter in text and then store that text in a variable $gene to run in an awk command in which those values are used to run some calculations. I am getting syntax errors however, when I try. Thank you :). The awk runs great if it is a pre-defined file that is used,... (7 Replies)
Discussion started by: cmccabe
7 Replies
GCHEM3D(1)						       gnome-chemistry-utils							GCHEM3D(1)

NAME
gchem3d - a small chemical viewer application SYNOPSIS
gchem3d [OPTION(S)...] [FILE...] DESCRIPTION
gchem3d is a small chemical viewer application, which can show several chemical file formats. OPTIONS
The following options are accepted: -b COLOR, --bgcolor=COLOR Use the given color as background color. COLOR can be one of "black" (default), "white", "#rrggbb" (don't forget to escape the "#" character in the shell). -d MODEL, --display3d=MODEL Choose how molecules are displayed. MODEL can be one of "BallnStick" (default), "SpaceFill". -?, --help Show application help options. --help-all, --help-* Print all or just a group of help options. These options are not documented here. Instead see gtk-options(7) and gnome-options(7). -v, --version Print gchem3d version information. SEE ALSO
gnome-options(7), gtk-options(7) AUTHORS
Jean Brefort <jean.brefort@normalesup.org> Program author. Daniel Leidert <daniel.leidert@wgdd.de> Manpage author. COPYRIGHT
Copyright (C) 2002-2007 Jean Brefort Copyright (C) 2004-2007 Daniel Leidert Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation. gcu 0.12 $Date: 2009-03-19 10:53:47 +0100 (jeu. 19 mars 2009) $ GCHEM3D(1)
All times are GMT -4. The time now is 01:19 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy