bai 1: su dung awk in tat ca file /etc/passwd
awk '{print}' /etc/passwd
hoac co the viet
awk '{print $0}' /etc/passwd
bai 2: in ra cac dong co ten la 'kevin'
awk '/kevin/ {print}' /etc/passwd
bai 3: in ra cac trung dau tien cua file /etc/passwd
awk -F: '{print $1}' /etc/passwd
bai 4: in ra truong dau tien va sap xep theo bang chu cai
awk -F: '{print $1}' /etc/passwd | sort
bai 5: in ra truong 1,3,5 trong file /etc/passwd
awk -F: '{print $1,"\t",$3,"\t",$5}' /etc/passwd
hoac co the phan cach cac truong
awk -F: '{print $1,"--",$3,"--",$5}' /etc/passwd
bai 6: in dong thu 5 trong file /etc/passwd
awk "NR==5{print;exit}" /etc/passwd
bai 7: liet ke tat ca cac nguoi dung tren he thong dc ta bang lenh useradd
user tren he thong co 500<=id<=60000
awk -F: '$3>=500 && $3<=60000{print $1""$3}' /etc/passwd
Related Posts
[shell scripts] tim kiem file
25 Aug 20130#!/bin/bash echo -n "nhap file can tim kiem: " read file name_file=$(find / -name $file) echo "ket ...Read more »
[shell scripts] Tinh tổng S=1+2+3+...+n
25 Aug 20130#!/bin/bash echo "nhap n tu ban phim: " read n s=0 for ((i=1; i<=$n; i++)) do let s=s+1 done echo...Read more »
[shell scripts] Tìm mã trên dãy số
25 Aug 20130#!/bin/bash echo -n "nhap n: " read n for ((i=0; i<n; i++)) do read -p "a[$i]= " a[$i] done...Read more »
[shell scripts] Scripts kiểm tra %CPU và %MEM
25 Aug 20131#!/bin/bash # %CPU a=$(ps -eo pcpu | awk '{tongcpu+=$1} END {print tongcpu}') echo "tong % CPU la: $...Read more »
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.