AWK SED Shell scripts and one liners commands examples

Handy AWK and SED ..frequently used one liners.

In this post I want to continuously update the most frequent and good awk and sed one liners we will use along with samples and examples in simple shell scripts.
1.To count the number of words in a string which are separated with special charters like ,
 # echo  "apple,mango,orange,goa" | awk -F, '{print NF}'
4
2.How to create and print the continuous variables in a loop after assigning the values to them
i=0
temp="MYTEMP"
echo $temp
while [ $i -le 4 ]
do
let i="i+1"
eval DYNVAR${i}=$temp$i
eval echo "Value in DYNVAR$i is \$DYNVAR$i "
done
3.in the nslookup <IP> output print only Valid hostname of that IP
nc041031:~ # nslookup 9.48.185.207 | awk '/=/ {print $4}'
nc185207.tivlab.austin.ibm.com.
4.in nslookup <Hostname> print only the valid IP of the corresponding host
nc041031:~ # nslookup nc185207.tivlab.austin.ibm.com. |  awk '/Address:/ {print $2}' | grep -v "#"
9.48.185.207
5.Cont ...



Technorati Tags: , , ,





0 comments to "AWK SED Shell scripts and one liners commands examples"

Post a Comment

Whoever writes Inappropriate/Vulgar comments to context, generally want to be anonymous …So I hope U r not the one like that?
For lazy logs, u can at least use Name/URL option which doesn’t even require any sign-in, The good thing is that it can accept your lovely nick name also and the URL is not mandatory too.
Thanks for your patience
~Krishna(I love "Transparency")

Popular Posts

Enter your email address:

Buffs ...

Tags


Powered by WidgetsForFree