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.