Gentoo Archives: gentoo-user

From: tuxic@××××××.de
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Question about handling filenames with "illegal" characters...
Date: Thu, 16 Apr 2020 16:17:03
Message-Id: 20200416161655.2nwgvactkgywmsjt@solfire
In Reply to: Re: [gentoo-user] Question about handling filenames with "illegal" characters... by Francesco Turco
1 On 04/16 05:21, Francesco Turco wrote:
2 > On Thu, Apr 16, 2020, at 17:15, tuxic@××××××.de wrote:
3 > > Normally I would replace the asd* with the according
4 > >
5 > > find . -name 'asd*' -print0 | <more here>
6 > >
7 > > but I got in trpuble, because "do_something"
8 > > now misunderstood the whole thing.
9 >
10 > What about the following command?
11 >
12 > find . -name 'asd*' -print0 | xargs -0 <more here>
13 >
14 > --
15 > https://fturco.net/
16 >
17
18 I would do that normally, but the <more> to much "more"....