more spaces followed by the grep line,. * Together, representing any character.650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/57/95/wKiom1SelReQNIv_AAClEf8sRJs235.jpg "title=" 3.png " alt= "Wkiom1selreqniv_aaclef8srjs235.jpg"/>[] matches a specified range of characters such as: ' [gg]rep ' matches grep and grep.650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/57/92/wKioL1Sel3iTSRT8AAA-1qieyZE214.jpg "title=" 4.png " alt= "Wkiol1sel3itsrt8aaa-1qieyze214.jpg"/>[^] matches a
The Grep,egrep command in a Linux system is a powerful text-search tool that uses regular expressions to search for text and print matching lines. The grep full name is global Regular expression Print, which represents the globally regular expression version, and its use rights are for all users.1.grep: The oldest text-matching program that uses the POSIX-defined basic regular expression (BRE) to match text
Linux Command Text Search tool grep, Egrep, Fgrepgrep, the global search regular Expression_r (RE) and print out, is a powerful text search tool that uses regular expressions to search for text and print matching lines.The grep family includes grep, Egrep, and Fgrep:egrep are the extensions of grep; Fgrep finds one or more rows in a file that matches the given st
Extending regular ExpressionsExtended Regular Expression command: EgrepRegular expressions are not supported but fast: fgrepCharacter Matching:.:[]:[^]:Number of matches:*:?:+: Match the characters in front of it at least once{m}: Exact match{M,n} no backslash required:Location anchoring:^:$:\\> or \b:Group:(): Group\1,\2,\3,......Or|: or (A|B)Cases:C|cat=c or Cat(c|c) At=cat or catLazy Qualifier*? Repeat any number of times, but repeat as little as p
/wKioL1RyBW6gyoowAAENihiIgQE185.jpg "alt=" Wkiol1rybw6gyoowaaenihiigqe185.jpg "/>5. Find one or two digits in the/etc/passwd file;650) this.width=650; "title=" QQ picture 20141123222739.png "style=" Float:none; "src=" http://s3.51cto.com/wyfs02/M01/53/D7 /wkiom1rybplhrb48aamxu-qfgas665.jpg "alt=" Wkiom1rybplhrb48aamxu-qfgas665.jpg "/>6, displays the line that starts with at least one whitespace character in/boot/grub/grub.conf;650) this.width=650; "Width=" 857 "height=" 131 "title=" QQ picture 2
1.1, the basic definition: www.2cto.comgrep (Global search regular RE) and print out of the line, full search of regular expressions and print out the lines, is a powerful text search tool that can only use basic regular expressions to search for text and print matching lines.grep is a common and commonly used command, and its main function is to compare string data and then print out strings that match the user's needs, but the idea is that when grep
The Egrep execution effect is similar to "GREP-E", and the syntax and parameters used refer to the grep instruction, which differs from grep in the way it interprets the string.
Egrep is interpreted using the extended regular expression syntax, while grep interprets it in basic regular expression syntax, extended regular than basic The expression of regular expression is more normative.
Grammar
Linux basic command grep egrep fgrep usage and regular expression 1. grep, egrep, and fgrep commands this article mainly introduces the basic parameters and usage formats of grep egrep fgrep commands and regular expressions in linux, method. (Note: fg stands for an example in this article.) 1.1. basic definition: www.2
contain numbers:grep ' [0-9] '/etc/inittabFilter out all rows that do not contain numbers:Grep-v ' [0-9] '/etc/inittabRemove all lines that begin with ' # ':Grep-v ' ^# '/etc/inittabRemove all empty lines and lines that begin with ' # ':Grep-v ' ^# '/etc/crontab |grep-v ' ^$ 'How to print a line that does not start with the English lettergrep ' ^[^a-za-z] ' test.txtgrep ' [^a-za-z] ' test.txtFilter any character with repeating characters:grep ' R..O '/etc/passwd. Represents any one charactergre
the extension.[FILE ...] Text content Description:/home/love.txt How to find the path to textecho ' abc ' | grep--color=auto ' ABC ' transmits text content in a "pipe" way. Pipeline do not understand please niang pipe article.~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Egrep with grep, you do not need to add the "-e" option when using the extended regular.Big rookie wish: a higher level. Welcome to the B
Egrep
Feature Description: The Egrep command is the same as the grep command with the-e flag, except that the error message and the use message are different and the S-flag function is different. To search for one or more files using the Egrep
Personal Insights: I think the text processing commands in Linux the grep egrep fgrep command is just as easy as mastering grep because the other two are almost the same, and the difference is very good.grep Basic Use method:Using the method grep [option] ' expression ' #学习的时候没好好听 don't know that I wrote it wrong, not for this post. Usually I don't read the video I studied before.The common options here are
Linux disk management commands and usage examples, linux disk command examplesLinux disk management
Linux disk management is directly related to the performance of the entire system.
Linux disk management commonly uses three commands: df, du, and fdisk.
Df: list the total disk usage of the file system du: Check disk space usage fdisk: used for disk partitioning
Df
Df Co
Examples of sudo commands and sudo command examples
Sudo: authorize normal users to execute a command and run it as a specified user.
Configure sudu, enter the command mongodo, find the target line, and edit the configuration file under the target line.
, The first co
Linux tips-history command usage: 15 Linux System Engineers often use the history command to view system operation history when analyzing system security or fault problems, this article will introduce 15 tips related to the history command through examples ...... 1. Use HISTTIMEFORMAT to display the timestamp. After yo
Cheat: a collection of practical Linux Command examples | Linux China, cheatlinuxMany of us often look at man pages to learn about command switches (options). It displays command syntax, instructions, details, and available options, but it does not have any practical examples
parameter passed to the command, as follows:$ jobs[1]-Stopped Cat[2]+ Stopped sed ' p '$ complete-j./list_job_attrib.sh$./list_job_attrib.sh [Tab][tab]Cat SEDFor background tasks, you can refer to the examples in the Linux background task to learn how to manage background tasks.6. complements with prefixes and suffixesThe complement function defines the prefix and suffix for the actual complement content.
Links in Linux commands mean that several commands are combined and executed through the operator. In Linux, the link commands are similar to writing short shell scripts in shell and directly executed on the terminal. Link makes automatic processing more convenient. Moreover, an unattended machine can run in a very organized manner with the help of the link operator.
10 link operators in Linux
This article aims to introduce some common link operators, and help readers improve productivity, redu
Linux crontab command usage details and examples, linuxcrontab
Linux systems are controlled by the cron (crond) System Service. The Linux system has a lot of planned work, so this system service is started by default. In addition, because users can also set scheduled tasks themselves, the Linux system also provides the command for users to control scheduled tasks
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.