🖥️zgrep

➡️This is a command-line reference manual for commands and command combinations that you don’t use often enough to remember it. This cheatsheet explains the zgrep command with important options and switches using examples.

▁ ▂ ▃ ▄ ꧁ 🔴☠ COMMANDLINE-KUNGFU WITH CHEATSHEETS ☠🔴꧂▅ ▃ ▂ ▁

#                ███████╗ ██████╗ ██████╗ ███████╗██████╗ 
#                ╚══███╔╝██╔════╝ ██╔══██╗██╔════╝██╔══██╗
#                  ███╔╝ ██║  ███╗██████╔╝█████╗  ██████╔╝
#                 ███╔╝  ██║   ██║██╔══██╗██╔══╝  ██╔═══╝ 
#                ███████╗╚██████╔╝██║  ██║███████╗██║     
#                ╚══════╝ ╚═════╝ ╚═╝  ╚═╝╚══════╝╚═╝     
                                                        

zgrep -i "<this>" <file>
#

zgrep 
# searches for regular expressions inside a compressed file.

zgrep SSH::Password_Guessing 2017-01-1?/notice.*gz 
# grep gziped log files from .gz files in dirs starting with 2017-01-1 & 1 wild character

zgrep 'pattern' /var/logs/apache2/access.log* | awk '{print $7}' | sort -n | uniq -c | sort -rn
# Retrieve a download count for URLs in apache logs

zgrep -i --color=always "string" files.gz | sort -k 2,3
# grep across gzip files and sort by numeric day & time

# Want to know when you closed your laptop lid and open it in #ubuntu Run 
`zgrep -P 'systemd-sleep\[\d+\]: (Suspending system|System resumed)' /var/log/syslog*` 

zless, zgrep, zcat, zdiff 
# These are wrapper commands for working with compressed files (gz, bz2 and xz). They have a z, bz or xz prefix.

zgrep "^\[" error_log.gz | less -S
# Only show the initial error lines with the timestamp on them in an Apache error log to filter out the extraneous output from other programs something may be running. Not to say that stuff isn't important, but sometimes it's a lot of noise.

#==============================##==============================#
# CMD ZGREP
#==============================##==============================#
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

  █║▌│║█║▌★ KALI ★ PARROT ★ DEBIAN 🔴 PENTESTING ★ HACKING ★ █║▌│║█║▌

              ██╗ ██╗ ██████╗  ██████╗ ██╗  ██╗███████╗██████╗
             ████████╗██╔══██╗██╔═══██╗╚██╗██╔╝██╔════╝██╔══██╗
             ╚██╔═██╔╝██║  ██║██║   ██║ ╚███╔╝ █████╗  ██║  ██║
             ████████╗██║  ██║██║   ██║ ██╔██╗ ██╔══╝  ██║  ██║
             ╚██╔═██╔╝██████╔╝╚██████╔╝██╔╝ ██╗███████╗██████╔╝
              ╚═╝ ╚═╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝╚══════╝╚═════╝

               █║▌│║█║▌ WITH COMMANDLINE-KUNGFU POWER █║▌│║█║▌

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░