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 :: git logline 
Shell :: merge master to a branch 
Shell :: run powershell script from wsl bash 
Shell :: scp linux to mac 
Shell :: how to install axios in react 
Shell :: vi quit 
Shell :: delete a folder from git 
Shell :: wsl2 
Shell :: install open jdk 8 mac homebrew 
Shell :: delete a git branch 
Shell :: github setup local 
Shell :: git rebase feature branch 
Shell :: random number in bash 
Shell :: signing key android 
Shell :: linux yaml validator command line 
Shell :: creat a new repository 
Shell :: exit status bash 
Shell :: how to copy a file in ubuntu 
Shell :: get latitude and longitude based on user entered place android 
Shell :: Generate Key Hashes For Facebook login Android app 
Shell :: linux vi 
Shell :: libuuid 
Shell :: dpkg: error processing package nginx (--configure): dependency problems - leaving unconfigured 
Shell :: setting ssh for github 
Shell :: install h5py ubuntu 20.04 pip 
Shell :: svn info git equivalent 
Shell :: commands for ssh 
Shell :: run ssh and immediately execute command 
Shell :: managed mode linux kali 
Shell :: Delete non empty folder 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =