Leetcode's Shell Part 4 questions finishing

Source: Internet
Author: User

Some of the details of the shell are not very familiar with, borrowed a lot of other people's Things

1. Word Frequency This problem is simple, as long as can be sorted can be cat words.txt |tr-s "" \ n "sort | unique-c | Sort-r | awk ' {print $ ' $ ' 2. Valid Phone Numberscat file.txt | awk '/^\d{3}-\d{3}-\d{4}$/|/^\ ([0-9]{3}\) [0-9]{3}-[0-9]{4}$/' 3.Transpose Filecat file.txt| awk ' {
MAX_NF = NFmax_nr = NrFor (x=1;x<=max_nf;x++) {vector[x,nr]= $x;    }}end{For (x = 1;x <= max_nf;x++) {For (y = 1;y <= max_nr; y++) {printf ("%s", Vector[x,y])if (Y < MAX_NR)printf ("")        }if (x < MAX_NF)printf ("\ n")}}' 4.Tenth linecat File.txt|awk ' nr==10 '

Leetcode's Shell Part 4 questions finishing

Related Article

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.