General Definition Of Bash Builtins & Programs Flashcards
man
an interface to the on-line manual
info
GNU info documentation
help
Display helpful information about bash builtin commands
find
Search for files and directories based on specific search parameters
stat
Displays inode information of a file/directory
cat
concatenate file and print on to the standard output
ls
list directory contents
File Text Manipulation
grep
Find lines in a file that match a regular expression
grep [options] pattern [files]
egrep
Just like grep but uses a differeted (“extented”) language for regular expressions
egrep [options] pattern [files]
fgrep
Just like grep, but instead of accepting regular expressions, it accepts a list of fixed strings, sperated by newlines.
fgrep [options] [fixed_strings] [files]
File Text Manipulation
cut
Extract columns from a file
cut -(b|c|f)range [options] [files]
File Text Manipulation
paste
Append column based data
paste [options] [files]
File Text Manipulation
tr
translate characters into other characters
tr [options] char set 1 [char set 2]
File Text Manipulation
expand
unexpand
Covert between tabs and spaces
expand [options] [files]
unexpanded [options] [files]
File Text Manipulation
sort
Sort lines of text by various criteria
sort [options] [files]