Sponsored Content
Top Forums UNIX for Advanced & Expert Users Executing if dynamic conditions in awk Post 303043999 by cskumar on Wednesday 12th of February 2020 09:27:45 AM
Old 02-12-2020
Executing if dynamic conditions in awk

Hi All,

I got struck at the below point where i am unable to get the desired output after forming the dynamic conditions.Below is the design.
1. We are getting inputs from the shell arguments and storing in a variable like below.
Code:
CONDITIONS="1=CT,2=US_10,3=CT_US_10"

2. After this i am mapping the position of the fields and storing the condition in the variable as below
Code:
CON=$1 == "CT" && $4 == US_10 && $60 == CT_US_10

3. I wish to apply it in the if statement get the desired output as below, however it is not working.
Code:
usr/bin/awk -v CONDITION="${CON}" 'BEGIN{FS=","}{ if (CONDITION) {print CONDITION"|"$147"|"$15"|"$16"|"$17"|"$4} } '

Can anyone help us

Moderator's Comments:
Mod Comment
There are 2 things you need to notice with regards to your post:

1- Please DO NOT color your text, keep it in simple default format and color.

2- After having these many posts from your in forums we expect you to wrap your samples with CODE TAGS as per forum rules so please always do so.

Thanks & Regards,
MODs team

Last edited by RavinderSingh13; 02-12-2020 at 11:13 AM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

About awk conditions

Hello, Can you explain why in the first 2 commands the awk does not print anything? Is it looking of a specific format ? Thanks. $ echo 12a3 | awk '($1>=2) {print $1}' # prints nothing $ echo 123a | awk '($1>=2) {print $1}' # prints nothing $ echo a123 | awk '($1>=2) {print $1}' a123... (1 Reply)
Discussion started by: majormark
1 Replies

2. UNIX for Advanced & Expert Users

Dynamic Downloading and executing of ELF files

Dear Group, I want to prepare an ELF file which can be downloaded dynamically to any address in the moemory and executes as a new task/thread/process. 1) for this what are all the compileation, linker options while building the ELF file? 2) which parts of ELF file has to modified while... (1 Reply)
Discussion started by: ravinder.are
1 Replies

3. Shell Programming and Scripting

specifying multiple conditions in AWK

how can i specify more than 1 consition in the following AWK statament?? i.e. if $2 is ABCD and $3 is MNOP and $4 is KLPM similarly for OR #!/bin/ksh awk -F '' ' $2 == "ABCD" { print $2, $3;}' file.xml (2 Replies)
Discussion started by: skyineyes
2 Replies

4. Shell Programming and Scripting

awk with two conditions

Hi Everyone, # cat 1 1;2;3;4;5;6 1;2;3;4;5; # awk -F ";" '$5 == "5"' 1 1;2;3;4;5;6 1;2;3;4;5; but the output is should be just "1;2;3;4;5;6" means 1st condition: $5 is 5; 2nd condition: $6 is not empty, please advice. Thanks (2 Replies)
Discussion started by: jimmy_y
2 Replies

5. Shell Programming and Scripting

Conditions in awk

Hi there, here is my command ssh host.local "/path/to/my/perscript/hostconfig.pl -s $HOST -d |awk '{if (\$4 > 120)print \"My error message\";exit}{s=0; for (i=1; i<=NF; i++) s++; if(s == 13) print \$3}'" The problem is if conditional 1 is met (i.e $4 > 120), i don't see "My error message", the... (5 Replies)
Discussion started by: urello
5 Replies

6. Shell Programming and Scripting

awk with conditions

Hi All, I have a file with below contents. "en2"/10.185.81.0:cluster_interconnect,"en5"/10.185.81.0:cluster_interconnect,"en6"/169.181.146.0:public I want to take the interface name from the file and convert it as ipaddress using ifconfig command get the output like below en6 ->... (2 Replies)
Discussion started by: kamauv234
2 Replies

7. Shell Programming and Scripting

awk three conditions

I'm having a problem pulling UID's from data. The data outputs a user's UID in one of three ways: 1. Error User user_name already assigned with <UID> 2. Success <UID> reserved for user_name 3. <a load of crap because there was a db failure yet somehow the UID is still in there> I typically... (5 Replies)
Discussion started by: MaindotC
5 Replies

8. Shell Programming and Scripting

Shell script executing both the conditions.

I have written this script. This is used for creating a backup folder. #!/bin/sh #set -x . /home/.profile usage="Usage is $0" usage="$usage " # Use the getopt utility to set up the command line flags. set -- `/usr/bin/getopt b: $*` # Process individual command line arguments while ;... (1 Reply)
Discussion started by: arijitsaha
1 Replies

9. Shell Programming and Scripting

If conditions in awk

Hello Friends, I need to find some CDRs in production servers whose 1st field value and 2nd field value = 1 and 11th looks like 45.123... where there are more than 3 digits after comma.so i wrote a one liner, something like below but does not work, however when i used first and second conditions... (8 Replies)
Discussion started by: EAGL€
8 Replies

10. Shell Programming and Scripting

awk problems - awk ignores conditions

awk 'BEGIN{ if('"$CATE"'<'"${WARN}"') printf ("%s", "'"`Kfunc "" ; break`"'") else if (('"${CATE}"'>='"${WARN}"') && ('"${CATE}"'<'"${CRIT}"')) printf ("%s", "'"`Wfunc ""; break`"'") else if ('"${CATE}"'>='"${CRIT}"') printf... (6 Replies)
Discussion started by: SkySmart
6 Replies
autosysconfig(8)					      System Manager's Manual						  autosysconfig(8)

NAME
autosysconfig - Maintains the list of dynamic kernel subsystems that are automatically configured SYNOPSIS
/sbin/init.d/autosysconfig add | delete | list [subsystem-name] DESCRIPTION
Use the autosysconfig program to maintain the kernel's list of dynamic subsystems that are automatically configured at each system startup. The following list describes the autosysconfig commands: Adds a dynamic subsystem to the list. At each system startup, the specified sub- system is automatically configured into the kernel. (The object module that contains the subsystem must exist in the /subsys or /var/subsys directory for automatic configuration to work correctly.) You must specify the subsystem-name parameter with the add command. Deletes a dynamic subsystem from the list. At each system startup, the specified subsystem is omitted from the kernel. You must specify the subsys- tem-name parameter with the delete command. Lists the dynamic subsystems that are automatically configured at system startup. The system issues the sysconfig -c command to configure dynamic subsystems at system startup. The subsystems are added to the kernel dur- ing the execution of the init program. No dynamic subsystems are automatically configured by default. You must add a subsystem name to the list to enable automatic configuration of that subsystem. EXAMPLES
The following are examples of using the autosysconfig command: To add a subsystem to the list of automatically configured subsystems, issue the following command: # /sbin/init.d/autosysconfig add lat This command adds the lat (Local Area Terminal) subsystem to the list. To see what subsystems are on the list, issue the following command: # /sbin/init.d/autosysconfig list Current automatic configuration list includes the following dynamic subsystems: lat SEE ALSO
Commands: sysconfig(8), sysconfigdb(8) System Administration autosysconfig(8)
All times are GMT -4. The time now is 01:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy