Linux Commands: Difference between revisions
Jump to navigation
Jump to search
(→Miscellaneous: strace) |
(→rpm) |
||
Line 7: | Line 7: | ||
grep -n PATTERN [FILE] # Print matched line numbers. |
grep -n PATTERN [FILE] # Print matched line numbers. |
||
grep -- "-s" [FILE] # Search for text "-s" |
grep -- "-s" [FILE] # Search for text "-s" |
||
</source> |
|||
== rpm == |
|||
* [http://susefaq.sourceforge.net/articles/rpm.html RPM RedHat Package Manager] |
|||
* '''Query commands''' |
|||
** To query a package that has '''not been installed''', add '''-p''' option to the command: |
|||
<source lang="bash"> |
|||
rpm -qpl package # List files provided by a package |
|||
</source> |
</source> |
||
Revision as of 16:30, 5 October 2008
grep
grep -Rsl PATTERN [FILE] # Recursive, no error output, only list filename
grep BASIC-REG-EXP-PATTERN [FILE] # Use classic regexp (like "dma\|DMA")
egrep EXT-REG-EXP-PATTERN [FILE] # Same as grep -E. Use extended regexp (like "dma|DMA")
fgrep FIXED-STRINGS-REG-EXP [FILE] # Same as grep -F. Pattern is a list of strings to match.
grep -n PATTERN [FILE] # Print matched line numbers.
grep -- "-s" [FILE] # Search for text "-s"
rpm
- RPM RedHat Package Manager
- Query commands
- To query a package that has not been installed, add -p option to the command:
rpm -qpl package # List files provided by a package
sed
sed [OPTION]... {script-only-if-no-other-script} [input-file]...
sed -n # Silent - suppress automatic printing of pattern space
sed -r # Use extended regular expression
Regular expressions
The information below is only illustrative. See e.g. Wikipedia page for reference information. The list below is actually for extended regular expressions, which can be obtained in sed using option -r (sed -r).
Regexp | Description |
---|---|
. | Match any character |
gray|grey | Match gray or grey |
gr(a|e)y | Match gray or grey |
gr[ae]y | Match gray or grey |
file[^0-2] | Match file3 or file4, but not file0, file1, file2. |
colou?r | (zero or one) - Match Color or Colour. |
ab*c | (zero or more) - Match ac, abc, abbc, .... |
ab+c | (one or more) - Match abc, abbc, abbbc, .... |
a{3,5} | (at least m and not more than n times) - Match aaa, aaaa, aaaaa. |
^on single line$ | (start and end of line) - Match on single line on a single line. |
When using standard (non-extended) regular expression, some special meta-characters (like the parenthesis ( ), or braces { }) must be quoted with backslash \.
Miscellaneous
- htop
- an improved top command (http://htop.sourceforge.net/index.php)
- strace
- trace system calls and signals