159
submitted 5 months ago* (last edited 5 months ago) by boredsquirrel@slrpnk.net to c/linux@lemmy.ml

TL;DW

# find with grep
# + concatinates results and runs the command once, faster
find . -name "*.txt" -exec grep -l "somename" '{}' '+'

# run a command for each result individually
find . -name "*.txt" -exec basename '{}' \';' |  column

# case insensitive
find -iname "SoMeNaMe.TxT

# file or dir
find -type f
find -type d

# define file owner
find -user Bob

# define file group
find -group wheel

# by permission
find -perm 777

# find by size
find -size +1G
you are viewing a single comment's thread
view the rest of the comments
[-] scrion@lemmy.world 19 points 5 months ago* (last edited 5 months ago)

Just for the sake of completeness:

https://github.com/BurntSushi/ripgrep

https://github.com/ggreer/the_silver_searcher

It's useful to be able to do this without additional tools (and there are more applications for the general command setup discussed in the video), but in practice, ease of use and performance often make a difference.

[-] boredsquirrel@slrpnk.net 1 points 5 months ago

I have rg installed but only used it for basic grep replacement

this post was submitted on 17 May 2024
159 points (93.4% liked)

Linux

47795 readers
950 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