194
What's the laziest thing you have done?
(lemmy.dbzer0.com)
A loosely moderated place to ask open-ended questions
Search asklemmy ๐
If your post meets the following criteria, it's welcome here!
Looking for support?
Looking for a community?
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
ls *.txt?No that would be just in the current folder, I needed to search recursively
find -name "*.txt"
Iirc. Though it might want a regular expression instead of a wildcard.
That would work for a single directory.
Most file managers have a global search.
ls -R *.txt?