awk Data Processing Tips

Source: Internet
Author: User
For data analysis or statistics, if the amount of data is small, we can quickly process with awk, here are some tips one, timestamp conversion date to timestamp: date-d "20150315" "+%s" Timestamp Date: date-d @1426565428 "+ %y-%m-%d " Two, data statistics processing random take 100 number
awk ' Begin{srand ()} {print rand () "" $2.txt | Sort-k1 | head-100
Take intersection
Cat 1.txt 2.txt | Sort | Uniq-d
Fetch and set
Cat 1.txt 2.txt | Sort | Uniq Remove Intersection
Cat 1.txt 2.txt | Sort | Uniq-u The most repeated occurrences of the number
Cat 1.txt 2.txt | Sort | uniq-c | Sort-r-k1 | head-100
Find average
awk ' {sum+=$1} end{print "average=" Sum/nr} ' 1.txt

third, file processing copy file a few lines sed-n ' 1,10p ' 1.txt > Copy.txt

awk Data Processing Tips

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.