Re: Potential linux find utility bug / misdocumentation

2017-02-06 Thread Eric Blake
On 02/06/2017 08:31 AM, David Jamroga wrote: > [fedora21@localhost ~]$ find . -iname Bon* > > ./BonAirPainting > > [fedora21@localhost ~]$ find . -iname bon* > > ./MiscNetflix/bonbon.txt > > ./BonAirPainting Not a bug in find, but in your usage. You forgot to use proper shell quoting. So yo

Potential linux find utility bug / misdocumentation

2017-02-06 Thread David Jamroga
I performed the following find on a fedora 21 linux i686 32-bit system [fedora21@localhost ~]$ find . -iname Bon* ./BonAirPainting [fedora21@localhost ~]$ find . -iname bon* ./MiscNetflix/bonbon.txt ./BonAirPainting I expected the same output since I used the -iname (ignore case name op