Which Linux command or utility is simple, powerful, and surprisingly unknown to many people or used less often?
This could be a command or a piece of software or an application.
For example I’m surprised to find that many people are unaware of Caddy, a very simple web server that can make setting up a reverse proxy incredibly easy.
Another example is fzf. Many people overlook this, a fast command-line fuzzy finder. It’s versatile for searching files, directories, or even shell history with minimal effort.
Discovered about rg recently and it is cool!
- xargs
- parallel
- PXE (ohai cobbler)
- tee
- task-spooler (ts aka tsp)
- rpm -V
Nothing new, just forgotten.
task-spooler (ts aka tsp)
This looks amazing. Do you know how well it works in dispatching and tracking jobs over remote servers (over SSH)?
We’ve been using tsp at my work for years and it works well. It is just a very basic queueing system so if you can run the job from the command line then you can run it via tsp.
Our workflow is to have concurrent jobs run on the remote servers with cron and tsp but you should be able to trigger remote jobs over SSH also if you prefer to have a single machine in charge of task allocation.
The mouse.
Bring on the downvotes. 🎉
Hey, still the quickest way to copy any damn text from a terminal elsewhere is with the mouse. Tmux is a joke for this.
Why can’t terminal emulators just make this easy
Wezterm has made this easy : shift + ctrl + x and your in vim motion moving all over with yank line or word or visual mode. It’s super awesome! I never touch my mouse. You can also remap the keymap of course.
edir, can use GUI editors too.
all of them
mlocate
I immediately had flashbacks of diagnosing bad I/O performance on CentOS 5 servers. That was the week when I learned what updatedb is and why it was always running in the background (there was a lot of files)
I love locate! I have a cronjob that updates the db every night, then I can just find a file without having to think about where it is
Do you have to wear the fedora to run this command?
No sorry, I should have elaborated. The package name is
mlocate
but the command islocate
. Occasionally runupdatedb
as it populates an sqlite db with every file on your system that you can then list out usinglocate
followed by the filename you want to locate.
I find myself using tldr a lot since finding out about it. It’s just so useful for commands that I don’t use enough to commit to memory.
What is it?
You type tldr and then some command. For example, tldr tar. It gives you a small list of examples and common use cases for the command.
That sounds excellent, can’t wait to try it.
Sometimes manpages are frustrating as hell because there are no examples. They read more like the developer making notes for themselves who is already intricately familiar with the program on how it works, rather than teaching someone to use the program.
So many times I’m shaking me head, like please show me an example of a syntactically correct command, what is wrong with you!!
Bat, a cat alternative.
Lsd, an ls alternative.
Procs, a ps alternative.
Renane, because it’s great.
what is the difference between
eza
andlsd
? I switched toeza
a while back and i havent looked at any other ls replacement.Love LSD. I always install it first with btop and zoxide
People always sleep on
script
. It’s badass and let’s you do goofy things like this while keeping standard terminal formatting: https://github.com/StaticRocket/dotfiles/blob/043e9a56cc9515060188ec4642e4048c0dd6c000/dot_bashrc#L79-L94From your example, I have a hard time inferring what is it doing.
find?
I like https://github.com/aristocratos/btop personally. It’s way prettier than the normal top command which you use to watch processes to find the one that’s hogging all of the CPU or whatever. And it’s not so much that it’s underrated so much as it’s not very well known or distributed by default.
Inshellisense is teaching me a lot. :) It’s an autocompleter.
https://github.com/microsoft/inshellisense
Also, Atuin for history.
awk
…for parsing the output of other commands quickly and simply. Then that parsed output can be used to create simple log messages or be passed as args to other scripts. Powerful.
awk and sed have always been intimidating for me with that cryptic syntax.
I agree with your sentiment regarding confusing syntax, however I think that confusion simply requires a calculated approach to dispell it.
It’s a prime example of why I use scripts as reminders as much as I use them functionally. I work out the syntax once… save it to an example script, then save myself 20 minutes of remembering by just $ cat ./path/to/script.sh and copying said syntax.
So if you can change your workflow such that learned things stay around as examples, I feel that you will pick it up much more quickly :)
Use
less
for checking contents of files. Many people usecat
all the time, but I don’t like it, because if you do that often, your terminal window quickly gets flooded with stuff, and then you have to scroll up and down if you wanna see a previous output. Withless
, your file opens in a different “frame”, which you can close when you’re done.I’d like to interject for a moment. There is also a tool called bat that is just cat with extra features. It prints out and works just like cat, but when the contents get too big, it works like less. The is syntax highlighting and works with git.
It’s replaced my need for cat and less.
cat <your file> | more
Useless use of cat award!
Try bat…
I’m not sure how underrated it is but the exec feature in
find
is so useful, there are so many bulk tasks that would just be incredibly difficult otherwise but instead are just one lineJust be careful with files with spaces in the name. There’s an incantation with
xargs
that I always have to look up when I want to use it safely.