Awk: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{lowercase | {{lowercase}} | ||
Pick out the fourth token: | Pick out the fourth token: | ||
<pre> | <pre> |
Revision as of 17:46, 19 April 2018
Template:Lowercase Pick out the fourth token:
mac=`/sbin/arp -a $ip | awk '{print $4}'`
Separate by = instead of whitespace:
echo "a=b=c" | awk -F= '{print $3}' # selects "c"
Duplicate entries in the passwd file?
awk -F: '{print $1}' /etc/passwd | sort -u | wc -l > temp1 awk -F: '{print $1}' /etc/passwd | sort | wc -l > temp2 diff temp1 temp2 rm temp1 temp2