Search Results

Search: Posts Made By: Royi
10,431
Posted By Jotne
awk -F, '$4~/CLICK/ {a[$1","$2","$3]++} $4~/CONV/...
awk -F, '$4~/CLICK/ {a[$1","$2","$3]++} $4~/CONV/ {b[$1","$2","$3]++} END {for (i in a) print i","a[i]+0"," b[i]+0}'
a,b,c,4,2
c,d,e,5,0
b,c,d,3,1
5,080
Posted By lowmaster
for those who care about a solution for this, you...
for those who care about a solution for this, you can build this inside you script:

typeset -i w=0
while ps $pid >/dev/null
do
sleep 1
w=$w+1
if [ $w -ge 10 ]
...
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 01:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy