this post was submitted on 17 May 2024
153 points (93.2% liked)

Linux

48352 readers
536 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
153
submitted 6 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]
 

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
[–] dohpaz42 4 points 6 months ago (2 children)

When using both {} and ;, it’s safer to use single quotes to escape the current argument and ending delimiter; eg ’{}’ and ’;’, respectively.

[–] [email protected] 3 points 6 months ago

Why? The quotes will be consumed by the shell when you execute the command, unless you do like "'{}'"

[–] [email protected] 1 points 6 months ago (1 children)
[–] dohpaz42 1 points 6 months ago* (last edited 6 months ago)

Short answer: shell expansion.

Longer answer:

Executing a command for each file

• Run file on every file in or below the current directory.

$ find . -type f -exec file '{}' \;

Notice that the braces are enclosed in single quote marks to protect them from interpretation as shell script punctuation. The semicolon is similarly protected by the use of a backslash, though single quotes could have been used in that case also.