Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

awk if else statement

# Basic syntax:
awk 'BEGIN {if(condition) outcome}' # if
awk 'BEGIN {if(condition_1) outcome_1; else outcome_2}' # if else
awk 'BEGIN {if(condition_1) outcome_1; else if(condition_2) outcome_2}' # if else if

# Example usage:
awk 'BEGIN {if(2>3) print "1_is_true"; else print 6}'
--> 6

# For multi-line and ternary operator syntax, see source
Comment

awk if

ls -l | awk '{ if($5==0) print $9}' 
-rw-rw----    1 nkumarachchi2019 nkumarachchi2019        0 Dec 15 16:47 jobs.cancel

## eg 1 ####################
awk '{
if($3 <= 40)
{
print "The salary of ",$1, " is ", $4, "
"
}
else
{
print "The age of ",$1, " is ", $3, "
"
}
 
}' employee.txt

###########################
## eg 2 #################
{
name=$1;
if ( name=="JACKSON" ) color="Blue";
else if (name=="MARTIN") color="Black";
else if (name=="LILY") color="Red";
else if (name=="ROBINSON") color="White";
else color="None";
 
if(color!="None") print "The favorite color of ", name, "is ", color;
else print "No person found";
 
}
#########################
https://linuxhint.com/conditional_statement_awk_command/



eg : 
ls -ltrd p_390.q_50 | awk '{split($9,a,"."); split(a[1],b,"_"); if(b[2]>360) c=b[2]-360; print("z_"c"."a[2])}'
 ls -ltrd p_390.q_50 | awk ' {split($9,a,"."); split(a[1],b,"_"); if(b[2]>360) {c=b[2]-360; print("mv "$9" z_"c"."a[2])} else {print ("mv "$9" "a[1]"."a[2])} }'
gives you : 
mv p_390.q_50 p_30.q_50
Comment

PREVIOUS NEXT
Code Example
Shell :: ssh keygen 
Shell :: grepcc coin 
Shell :: ubuntu server clean up disk space 
Shell :: echo -e flag 
Shell :: install angular cli version 
Shell :: how to uninstall mahjongg in ubuntu 
Shell :: git stash with message 
Shell :: run dotnet core app 
Shell :: list of git branches 
Shell :: pip install package to specific directory 
Shell :: how to add gif in github readme 
Shell :: install rbenv 
Shell :: how to switch php versions 
Shell :: see file size linux 
Shell :: how to reboot kali linux with commands 
Shell :: fish add rust to path 
Shell :: mix ecto.migrate 
Shell :: linux check docker version 
Shell :: reboot pi from command line 
Shell :: array length bash 
Shell :: export requirements from python venv 
Shell :: gem pg install error mac os 
Shell :: git update fork from original repo 
Shell :: install react-player react 
Shell :: permission denied /dev/kvm 
Shell :: linux && 
Shell :: remove trailing slash 
Shell :: upgrade bash version mac 
Shell :: compress folder ubuntu 
Shell :: how to kill local server in ubuntu by command 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =