Category: CLI & Terminal Tools

bat

bat Website: github.com/sharkdp/bat bat is a cat(1) clone with syntax highlighting and Git integration. It extends the standard cat command with features like line numbers, Git change markers, automatic paging, and syntax highlighting for over 200 programming and markup languages. Key Features Syntax Highlighting — Supports 200+ languages out of the box Git Integration — […]

fd

fd Website: github.com/sharkdp/fd fd is a fast and user-friendly alternative to the find command. Written in Rust, it uses parallel traversal and smart case detection to locate files in the filesystem quickly. Its intuitive syntax makes common file-finding tasks simpler than with traditional find. Key Features Intuitive Syntax — Just pass a pattern: fd pattern […]

ripgrep (rg)

ripgrep (rg) Website: github.com/BurntSushi/ripgrep ripgrep (rg) is a line-oriented search tool that recursively searches directories for a regex pattern. Written in Rust, it is designed to be faster than grep, particularly on large codebases, by respecting .gitignore rules and skipping hidden/binary files by default. Key Features Blazingly Fast — Uses Rust regex engine with SIMD […]

jq

jq Website: jqlang.github.io/jq jq is a lightweight and flexible command-line JSON processor. It is the go-to tool for parsing, filtering, mapping, and transforming JSON data in shell scripts and command-line workflows, supporting a rich query language similar to how sed/awk work for text. Key Features JSON Query Language — Filter and transform JSON with a […]

AWK (gawk)

AWK (gawk) Website: www.gnu.org/software/gawk/ AWK is a powerful text-processing language and tool designed for pattern scanning and data extraction. Named after its creators (Aho, Weinberger, Kernighan), it excels at processing structured text data like CSV, log files, and output from other commands. GNU Awk (gawk) is the most common implementation. Key Features Field-Based Processing — […]

sed

sed Website: www.gnu.org/software/sed/ sed (stream editor) is a non-interactive command-line text editor for filtering and transforming text. It processes text line by line, applying editing commands defined by the user, making it ideal for batch file editing, find-and-replace operations, and text processing pipelines. Key Features Find and Replace — Substitute text patterns across files or […]

grep

grep Website: www.gnu.org/software/grep/ grep is a command-line utility for searching plain-text data sets for lines matching a regular expression. It is one of the most fundamental and widely used tools in Unix and Linux systems, available on virtually every POSIX system. Key Features Regular Expression Search — Basic, extended, and Perl-compatible regex support Recursive Search […]

tmux

Category: System Utilities.

Sign In

Register

Reset Password

Please enter your username or email address, you will receive a link to create a new password via email.