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
  • @some_guy
    link
    284 months ago

    Not the person above, but I know that written explanations of command line tools are always preferred by myself.

      • @some_guy
        link
        14 months ago

        Why didn’t I think of that? This is a game changer!