awk code to inspect variable before printing


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting awk code to inspect variable before printing
# 1  
Old 05-17-2018
awk code to inspect variable before printing

i have a unique scenario id like help with.

im currently running this command and it does what i want:

Code:
printf '%s\n' "${RawContent}" | awk '/##  Beginning Stages  ##/,/## Ending Stages ##/' | awk '!/^#.*\!|^#\!|DefaultError/'

Can this be shortened? I'm looking for something portable as i intend to use this across several different unix platforms.

EDIT: I'm adding the content of "RawContent":

RawContent:

Code:
##  Beginning Stages  ##

#!/bin/sh

echo "What is your name? "
read usname

echo 

echo "The date and time right now is `date`"

echo 

echo "Current directory is `pwd` "

DefaultError=none

## Ending Stages ##

The content of "RawContent" varies but my code basically does precisely what i need, which is:

Code:
1. Grabs the data that is between the two patterns of "##  Beginning Stages  ##" and "## Ending Stages ##"
2. Removes all lines that have contain specific text

The third thing i need it to do is to print absolutely nothing if the result of 1 and 2 contain the pattern "WrongValue=".

Here is how I would do it:

Code:
VarA=$(printf '%s\n' "${RawContent}" | awk '/##  Beginning Stages  ##/,/## Ending Stages ##/' | awk '!/^#.*\!|^#\!|DefaultError/')

case "${VarA}" in
*WrongValue=*)
   j=j  # do nothing
;;
*)
  printf '%s\n' "${VarA}"
;;
esac

How can I optimize this and also have the optimized version usable across all/most Unix systems?

Last edited by SkySmart; 05-19-2018 at 12:12 PM..
# 2  
Old 05-18-2018
You definitely know this already:



Please become accustomed to provide decent context info of your problem.

It is always helpful to carefully and detailedly phrase a request, and to support it with system info like OS and shell, related environment (variables, options), preferred tools, adequate (representative) sample input and desired output data and the logics connecting the two including your own attempts at a solution, and, if existent, system (error) messages verbatim, to avoid ambiguities and keep people from guessing.
# 3  
Old 05-18-2018
Quote:
Originally Posted by RudiC
You definitely know this already:



Please become accustomed to provide decent context info of your problem.

It is always helpful to carefully and detailedly phrase a request, and to support it with system info like OS and shell, related environment (variables, options), preferred tools, adequate (representative) sample input and desired output data and the logics connecting the two including your own attempts at a solution, and, if existent, system (error) messages verbatim, to avoid ambiguities and keep people from guessing.
I really believe i provided more than adequate information.

os: all unix oses. linux, sunos, ubuntu, aix
shell: /bin/sh

my apologies for the inconvenience.
# 4  
Old 05-18-2018
Knowing that you're going to be using /bin/sh on Solaris 10 and older UNIX systems eliminates the possibility of using $(command) command substitution. So you might have warned us that the code you say does what you want does not, in fact, do what you want on all UNIX systems.

One could also provide some sample inputs and the corresponding desired outputs.

Do you still believe you provided more than adequate information about your environment?
# 5  
Old 05-18-2018
Quote:
Originally Posted by SkySmart
I really believe i provided more than adequate information.

. . .
Do you really want people in here to build their own test cases from the sparse info that you provided? Or do you want untested proposals that might or might not work?
This User Gave Thanks to RudiC For This Post:
# 6  
Old 05-19-2018
My apologies everyone.

Below is the content of "RawContent":

Code:
##  Beginning Stages  ##

#!/bin/sh

echo "What is your name? "
read usname

echo 

echo "The date and time right now is `date`"

echo 

echo "Current directory is `pwd` "

DefaultError=none

## Ending Stages ##

# 7  
Old 05-19-2018
As the sample doesn't contain the "WrongValue" string, you don't seem to want that condition tested.

Would this come close to what you need?
Code:
printf '%s\n' "${RawContent}" |
awk '
/##  Beginning Stages  ##/,
/## Ending Stages ##/   {if (!/^#.*\!|DefaultError/)    {TMP = TMP DL $0
                                                         DL = ORS
                                                        }
                         if (/## Ending Stages ##/)     {if (TMP !~ /WrongValue/) print TMP
                                                         DL = TMP = ""
                                                        }
                        }
'

How is the "RawContent" variable populated? If by reading a file, it might be more efficient to work on that file immediately circumventing the variable assignment.
This User Gave Thanks to RudiC For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Issue when printing filename through cygwin using a variable with awk

Hi, If i were to do this an print out the file, it will show as it is in the command $ awk '/Privilege Use/ {P=0} /Object Access/ {P=1} P' AdvancedAudit.txt Object Access File System No Auditing Registry No Auditing Kernel... (1 Reply)
Discussion started by: alvinoo
1 Replies

2. Shell Programming and Scripting

[awk] printing value of a variable assignment from a file

Heyas Me try to print only the value of a (specific) variable assignment from a file. What i get (1): :) tui $ bin/tui-conf-get ~/.tui_rc TUI_THEME dot-blue "" "$TUI_DIR_INSTALL_ROOT/usr" "$TUI_DIR_INSTALL_ROOT/etc/tui" "$TUI_PREFIX/share/doc/tui" "$TUI_PREFIX/share/tui"... (2 Replies)
Discussion started by: sea
2 Replies

3. Shell Programming and Scripting

awk equivalent code in C for printing NF

Hi all ! whether anyone in forum knows what awk will use while printing number of fields in file(NF) ? for example awk END'{print NF}' file prints number of columns in file if anyone knows equivalent code in C kindly share or explain logic behind it (8 Replies)
Discussion started by: Akshay Hegde
8 Replies

4. Shell Programming and Scripting

printing variable with variable suffix through loop

I have a group of variables myLINEcnt1 - myLINEcnt10. I'm trying to printout the values using a for loop. I am at the head banging stage since i'm sure it has to be a basic syntax issue that i can't figure out. For myIPgrp in 1 2 3 4 5 6 7 8 9 10; do here i want to output the value of... (4 Replies)
Discussion started by: oly_r
4 Replies

5. Homework & Coursework Questions

problem with printing out variable in awk

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: couldn't print out stored variable in awk 2. Relevant commands, code, scripts, algorithms: i have in a... (5 Replies)
Discussion started by: ymc1g11
5 Replies

6. Shell Programming and Scripting

Printing a variable column using awk

Hi everyone, Ok here's the scenario. I have a control file like this. component1,file1,file2,file3,file4,file5 component2,file1,file2,file3,file4,file5I want to do a while loop here to read all files for each component. file_count=2 while ] do file_name=`cat list.txt | grep... (2 Replies)
Discussion started by: The Gamemaster
2 Replies

7. Shell Programming and Scripting

Awk Issues - Not printing the 10th Variable.

All, I am attempting to print the tenth ($COPY2) varaibales into one file. But i am finding that all variables are being outputted except for $10. Can someone help!!!! Code Below ---------- echo $SERVER $IMAGE $IMAGEDAY $IMAGEMONTH $IMAGEYEAR $COPY1 $EXPIREDAY $EXPIREMONTH... (1 Reply)
Discussion started by: Junes
1 Replies

8. Shell Programming and Scripting

Replace variable with its value while printing

Hi I have a file in which there is list of files. eg: $path1/file1 $path1/file2 $path2/file3 I am trying to read this file in other script.However the value of variable i.e. $path1 and $path2 is not replaced by its value. How to do it ? I am trying: while read line do echo... (2 Replies)
Discussion started by: dashing201
2 Replies

9. Programming

how to inspect the bytes in a file?

What is the easiest way to inspect the bytes stored in a file? Ideally, If my file was 10 bytes each of which had only the high bit set, I'd be able to browse for it and get output like this: 01 - 10000000 02 - 10000000 03 - 10000000 04 - 10000000 05 - 10000000 06 - 10000000 07 -... (7 Replies)
Discussion started by: sneakyimp
7 Replies

10. UNIX for Dummies Questions & Answers

sed not printing variable

I have the following string stored in a variable from a file sbCvgXfsuupllsucpp11-aWa I want to use sed to search for the string in a second file: FileSys.dat sed -n "${obid}" FileSys.dat I'm getting "sed: command garbled: sbCvgXfsuupllsucpp11-aWa" The syntax seems fine...anyone... (2 Replies)
Discussion started by: orahi001
2 Replies
Login or Register to Ask a Question