this post was submitted on 13 Jun 2023
19 points (100.0% liked)

Linux

45582 readers
600 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Big fan of commandline tools such as vim, htop etc. What is in your opinion must have tools?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 1 year ago (2 children)

fzf for quickly matching file names especially deep in the directory hierarchy

ripgrep for quickly searching for text content within files

dtrx for handling the right extractions of different archive types

[–] [email protected] 3 points 1 year ago (2 children)

What is the difference between ripgrep and just plain grep?

[–] [email protected] 5 points 1 year ago (1 children)

ripgrep is a reimplementation of grep in Rust. It benchmarks faster for large file searches and also comes with quality of life features like syntax highlighting by default.

[–] ShitpostCentral 4 points 1 year ago (1 children)

It also ignores files in .gitignore and some others by default

[–] eyolf 3 points 1 year ago (1 children)

It also has a much simpler and forgiving syntax. Just type rg anything and it finds anything

[–] [email protected] 1 points 1 year ago

grep does that through fgrep

[–] [email protected] 1 points 1 year ago

Even better, there is ripgrep-all that can also search in binary files like PDFs and office documents: https://github.com/phiresky/ripgrep-all