csv
다음 형식의 파일이 있습니다 .
20171129,1
20171201,0.5
20171201,0.5
20171202,1.25
20171202,1.75
두 번째 필드가 이 명령과 동일한 날짜를 따르는 경우 다음 명령을 사용하여 두 번째 필드를 합산합니다.
awk -F ',' '{a[$1] += $2} END{for (i in a) print "On " i, "you spend: "a[i] " hour(s)"}' << "file.csv"
내가 얻는 결과는 다음과 같습니다.
On 20171129 you spend: 1 hour(s)
On 20171201 you spend: 1 hour(s)
On 20171202 you spend: 3 hour(s)
지금 달성하고 싶은 것은 원하는 대로 날짜 형식을 지정하는 것입니다.
awk -F ',' '{a[$1]} END{for (i in a) print i}' << "file.csv" \
| date +"%a, %d.%m.%Y" -f -
# prints:
Wed, 29.11.2017
Fri, 01.12.2017
Sat, 02.12.2017
그래서 내 최종 결과는 다음과 같습니다.
On Wed, 29.11.2017 you spend: 1 hour(s)
On Fri, 01.12.2017 you spend: 1 hour(s)
On Sat, 02.12.2017 you spend: 3 hour(s)
출력 형식을 지정하기 위해 date
명령에서 이를 호출할 수 있습니까 ?awk
답변1
당신이 사용할 수있는멍하니포함시간그리고시간기능(https://www.gnu.org/software/gawk/manual/html_node/Time-Functions.html).
gawk -F ',' '{a[$1] += $2} END{for (i in a) print "On " strftime("%a, %d.%m.%Y", mktime( substr(i,1,4) " " substr(i,5,2) " " substr(i,7,2) " 0 0 0" )) " you spend: "a[i] " hour(s)" }' files.csv
더 자세하게:
gawk -F ',' '
{
a[$1] += $2
}
END{
for (i in a) {
# mktime needs a date formated like this "2017 12 31 23 59 59"
# strftime needs a Unix timestamp (produced by mktime)
print "On " strftime("%a, %d.%m.%Y", mktime( substr(i,1,4) " " substr(i,5,2) " " substr(i,7,2) " 0 0 0" )) " you spend: "a[i] " hour(s)"
}
}' files.csv
기본으로는앗, 명령을 호출하고 결과를 읽어야 합니다.줄을 서다:
awk -F ',' '{a[$1] += $2} END{ for (i in a) { COMMAND = "date +\"%a, %d.%m.%Y\" -d " i ; if ( ( COMMAND | getline DATE ) 0 ) { print "On " DATE " you spend: "a[i] " hour(s)" } ; close(COMMAND) } }' files.csv
더 자세하게:
awk -F ',' '
{
a[$1] += $2
}
END{
for (i in a) {
# Define command to call
COMMAND = "date +\"%a, %d.%m.%Y\" -d " i
# Call command and check that it prints something
# We put the 1st line of text displayed by the command in DATE
if ( ( COMMAND | getline DATE ) > 0 ) {
# Print the result
print "On " DATE " you spend: "a[i] " hour(s)"
}
# Close the command (important!)
# Your child process is still here if you do not close it
close(COMMAND)
}
}' files.csv