Re:

2019-03-15 Thread Dale R. Worley
I think what you are asking for is something like: i=0 while ... do find . -mindepth $i -maxdepth $i ... i=$(( i+1 )) done That will look at all the files and directories at one depth before looking at all the files and directories at the next greater depth. (It doesn

Re: Problem with "." and ","

2019-03-15 Thread Eric Blake
On 3/15/19 5:45 AM, Michal wrote: > Hi, > I terrible sorry if I'm wasting you time, but probably I found a bug. In > example like this: > find /home/certget/ssl/example.pem -mtime -0,1 > This will work on server with locales changed to "pl_PL.UTF-8" and on > servers with "en_US.UTF-8" I need to us

Re: Problem with "." and ","

2019-03-15 Thread Igor Fontana
El vie., 15 de mar. de 2019 a la(s) 13:50, Michal (mic...@dzwon.net) escribió: > > Hi, > I terrible sorry if I'm wasting you time, but probably I found a bug. In > example like this: > find /home/certget/ssl/example.pem -mtime -0,1 > This will work on server with locales changed to "pl_PL.UTF-8" a

Re: Problem with "." and ","

2019-03-15 Thread Michal
Don't worry, I managed myself with this problem. I just wanted to inform that there is such problem (if you would like to do something with that in the future). Have a nice holiday and thanks for quick answer. - Michal pt., 15 mar 2019 o 14:54 James Youngman napisał(a): > There is a simple work

Re:

2019-03-15 Thread Eric Blake
On 3/14/19 9:49 PM, Budi wrote: > How do we make findutil search in ply by ply depth instead of binary > search tree, ie. how to make it search on a ply depth thoroughly > without getting inside any directory there before all par member is > read and retrieved I'm not exactly sure what your questi

Re: Problem with "." and ","

2019-03-15 Thread James Youngman
There is a simple work around. Set LC_NUMERIC=C or LC_ALL=C. I can't test this right now, I'm on holiday away from any computer. On Fri 15 Mar 2019, 14:50 Michal, wrote: > Hi, > I terrible sorry if I'm wasting you time, but probably I found a bug. In > example like this: > find /home/certget

[no subject]

2019-03-15 Thread Budi
How do we make findutil search in ply by ply depth instead of binary search tree, ie. how to make it search on a ply depth thoroughly without getting inside any directory there before all par member is read and retrieved

Problem with "." and ","

2019-03-15 Thread Michal
Hi, I terrible sorry if I'm wasting you time, but probably I found a bug. In example like this: find /home/certget/ssl/example.pem -mtime -0,1 This will work on server with locales changed to "pl_PL.UTF-8" and on servers with "en_US.UTF-8" I need to use "-mtime -0.1". It's very irritating when I n