Gentoo Archives: gentoo-user

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

Replies