into my script I use this
paste BEGIN_OUT_146.txt CONT_OUT_146.txt END_OUT_146.txt ABORT_OUT_146.txt | awk '{printf "%-15s %-15s %-15s %-15s\n",$1,$2,$3,$4}'
so I get my result =)
example
BEGIN_OUT_146, CONT_OUT_146, END_OUT_146, ABORT_OUT_146
14517 1324035 23087...
Hi all,
I try to split one column in four columns more. But in don't find the way.
example:
I have one file with this Format:
string1
number1
number2
number3
number4
number5
string2
number1
number2
number3
number4
number5
I tried to do that the output be just like this
string1...
for I in MAY JUN JUL AUG; do echo $I; cat final_subscriber_mOP.txt | grep -v -e rows -e --- -e s|awk '$1 ~ /$I/ {print $1, $2}' | sort -n | uniq -c; done
Thank you for support.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.