多個變數如何傳到awk中

Augusdi發表於2015-05-18


多個變數如何傳到awk中

read a?"   請輸入變數A:"
read b?"   請輸入變數B:"
read c?"   請輸入變數C:"
read d?"   請輸入變數D:"
awk -v a=$a -v b=$b -v c=$c -v d=$d 'BEGIN {printf("%-10s %-15s %-12s %-18s\n",a,b,c,d)}'| tee file1


相關文章