Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • What is your locale set to? Commented Jul 3, 2023 at 9:35
  • I'm able to match them with find . -iregex './[a-z]$', but I think this isn't precise enough for what you need Commented Jul 3, 2023 at 9:42
  • 1
    These characters are from Latin-1 Supplement and Latin Extended-A The Perl regex "[aà-åĀ-ą]" can match them, but GNU Find has no support for it. fd does. Commented Jul 3, 2023 at 10:44
  • I wonder how shells (esp. zsh)'s nocaseglob (or similar) options behave, because find -iname 'glacier' -exec ••• could very well be replaced with for file in **/(#i)glacier ; do ••• Commented Jul 3, 2023 at 13:26