Linux gzip command options
Gzip (GNU zip) is a compressing tool. Which is use to truncate the file size. Original file will be replace by the compressed file ending with extension (.gz) with by…
Gzip (GNU zip) is a compressing tool. Which is use to truncate the file size. Original file will be replace by the compressed file ending with extension (.gz) with by…
The uniq command you can form a sorted list in which every word will occur only once. Sample syntax of uniq command : # command <filename> | uniq Like example…
Unix or Linux tee command is similar to 'cat' command with only one difference. It reads the input and writes in in a file also outputs in the terminal. linux…
'comm' command compares two files or streams. By default, 'comm' will always display three columns. Number of first column indicates non-matching items of number of first file, The column number…
The Unix and Linux grep command stands for global regular expression print. The system grep command filters the content of a file which makes our search easy. grep with pipe…