Unix Tutorial 14 : Text Processing Commands 1
Unix Filter Commands grep: Find lines in stdin that match a pattern and print them to stdout. sort: Sort the lines in stdin, and print the result to stdout. uniq: Read from stdin and print unique (that are different from the adjacent line) to stdout. cat: Read lines from stdin (and more files), and concatenate them to stdout. more: Read lines from stdin, and provide a paginated view to stdout. cut: Cut specified byte, character or field from each line of stdin and print to stdout. paste: Read lines from stdin (and more files), and paste them together line-by-line to stdout. head: Read the first few lines from stdin (and more files) and print them to stdout. tail: Read the last few lines from stdin (and more files) and print them to stdout. wc: Read from stdin, and print the number of newlines, words, and bytes to stdout. tr: Translate or delete characters read from stdin and print to stdout. Command grep...
Comments
Post a Comment