shell-script-pt
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Como pegar só os campos necessários?


From: itamarnet
Subject: Re: Como pegar só os campos necessários?
Date: 29 Mar 2014 07:06:26 -0700

awk '
BEGIN {
FS=";"
Total = 0 
}
{
print $1, $2, $4
Total += $2
}
END { print Total }
' TPD_2014_03_*.old

reply via email to

[Prev in Thread] Current Thread [Next in Thread]