Text and log filtering in shell programming

Source: Internet
Author: User

1: grep command:

Grep-v "char" file_name match text that does not contain "char"

Grep-n-w "char" file_name completely matches a character

Grep ^ s $ s is the text that matches the first or last row of s.

2: tr command

Tr set1 set2 replace set set1 with set2

Tr-s set1 compressed character

Tr-t ":" The default Delimiter is space.

Tr-d "set" deletes all characters in the set from the text

3: seq commands are used to generate sequences.

Seq 1 10 generates a sequence from 1 to 10 with line breaks as the Separator

Seq-s "" 1 + 2 10 specifies the separator as space, and the sequence increment is 2

4: The sort command is generally used with the uniq command for sorting.

Ls/boot | sort-n-k5-n indicates that the values are sorted by numbers, and-k 5 indicates that the values are listed as standard by 5th.

5: uniq for Statistics

Uniq-c: count the number of the same rows

6: cut is used to cut characters or lines

Cut-d ""-f 5/etc/passwd-d "" specifies the delimiter as a space and only displays the 5th regions.

Ls/boot | cut-c 5 truncates the fifth character

Cut-B 5 truncates the fifth byte.

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.