Replace your Dated π§Linux Command Line Utilities with These Modern Alternatives.
Threadπ§΅β
1. exa
A modern replacement for ls with coloring written in Rust. github.com/ogham/exa
2. btop++
Modern replacement for top written in C+. Btop++ is a resource monitor that shows usage and stats for processor, memory, disks, network, and processes github.com/aristocratos/bβ¦
3. htop
htop is another modern top replacement.
4. bat
A modern replacement for cat written in Rust. Unlike cat, this tool supports syntax highlighting for many programming languages out of the box. github.com/sharkdp/bat
9. tldr
TL;DR stands for "Too Long; Didn't Read".
tldr is great when you just want to check a few common commands syntax without scrolling through a detailed manpage. github.com/tldr-pages/tldr
11. zoxide
Yet another tool written in Rust. Zoxide is a fast replacement for the cd command. It keeps track of the directories you visit and you can quickly navigate to them without specifying the complete path. github.com/ajeetdsouza/zoβ¦
12. gping
Ping with graph and we're back again to the Rust world!.π github.com/orf/gping
14. fzf
Fzf is fast fuzz search tool Guess which language it is written in? Nope, not Rust. It's written in Go. github.com/junegunn/fzf
15. broot
A new way to see and navigate directory trees. I'm beginning to think that Rust is now the god languageππ. github.com/Canop/broot
15. Glances
Glances an Eye on your system. A top/htop/btop alternative written in Python. github.com/nicolargo/glanβ¦
16. bottom
Yet another cross-platform graphical process/system monitor. Inspired by gtop, gotop, and htop. Guess which language it is written in? You might have guessed right. It's written in Rust. github.com/ClementTsang/bβ¦
π―That's all folks!
If you found this thread useful, please consider following @xtremepentest and retweeting the first tweet.
β’ β’ β’
Missing some Tweet in this thread? You can try to
force a refresh
Looking for a tool that simplifies API management? Introducing Apidog
Designing APIs can be complex, but tools like @ApidogHQ simplify the process. Apidog ( is a comprehensive API design-first development platform that offers numerous features to streamline API development. While many API design and management tools are available, Apidog stands out as a comprehensive solution.
Here's why Apidog is becoming the go-to platform for API design:
1. REAL API Design-first Development Platform
Apidog offers visual tools for API design, development, testing, and documentation. Its elegant UI and compatibility with OpenAPI Specification (OAS) eliminate the need for manual coding.
The platform also supports multi-branch API development, making it ideal for teams working on complex projects.
If you want to learn Linux bash scripting for FREE, open this:
1. Getting Started with Bash Scripting
Bash scripts are a series of commands written in a file that can be executed by the Bash shell. This article will cover the basics of creating and running your first Bash script. sysxplore.com/create-a-bash-β¦
2. Comments in Bash
Commenting your code is an essential practice in programming, as it helps you and others understand the purpose and functionality of each section.
In Bash scripting, comments are used to annotate your scripts, making them more readable and maintainable. This article will cover the different ways to add comments in your Bash scripts. sysxplore.com/comments-in-baβ¦
13 Linux tr command practical examples you should know as a system administrator:
The tr command short for translate, is one of the most useful command for manipulating text on the command line.
It allows you to perform useful operations such as converting lowercase characters to uppercase characters, uppercase characters to lowercase characters, character replacing, and deleting characters.
It is usually used in conjunction with other commands via piping.
Linux user management - how to add users in Linux π§΅β
The useradd command is the main tool for adding new users to a Linux system. This command allows you to quickly create a new user account and configure the user's $HOME directory structure.
The useradd command creates a user account by combining system default settings and command-line parameters.
To see the system default values on your Linux distribution, use the useradd command with the -D option: