On Thu, Apr 16, 2020, at 17:15, tu...@posteo.de wrote:
> Normally I would replace the asd* with the according
> 
> find . -name 'asd*' -print0 | <more here>
> 
> but I got in trpuble, because "do_something" 
> now misunderstood the whole thing.

What about the following command?

find . -name 'asd*' -print0 | xargs -0 <more here>

-- 
https://fturco.net/

Reply via email to