Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
awk '
NR>1 {
source=$1
target=$2
times=$3
if (!S_D[source,target]) {
# new target
R[source]=R[source] ( T[source] ? "," : "" ) target
T[source]++
}
D[source]+=times
S_D[source,target]+=times
}
END {
for (i in D)
print i,T[i]" ("R[i]")",D[i]
}
' file.txt