Re: [PATCH] xargs: support -a args-file

2017-08-30 Thread Johannes Schindelin
Hi Xabier, On Wed, 30 Aug 2017, Xabier Oneca -- xOneca wrote: > 2017-08-29 21:06 GMT+02:00 Denys Vlasenko : > > > > On Fri, Aug 25, 2017 at 10:42 PM, Johannes Schindelin > > wrote: > >> @@ -584,6 +593,7 @@ int xargs_main(int argc

Re: tr: trying to find the right incantation of a character class...

2017-08-30 Thread Cristian Ionescu-Idbohrn
On Tue, 29 Aug 2017, Olivier Brunel wrote: > On Tue, 29 Aug 2017 19:23:39 +0200 (CEST) > Cristian Ionescu-Idbohrn wrote: > > > ...to do this: > > > > $ echo 'hello world-1' | tr -d '[ -]' > > > > that is, remove all SPACES (0x20) and dashes (0x2D) in input?

Re: [PATCH] xargs: support -a args-file

2017-08-30 Thread Denys Vlasenko
Fixed, thanks! On Wed, Aug 30, 2017 at 12:18 PM, Xabier Oneca -- xOneca wrote: > Hello, > > 2017-08-29 21:06 GMT+02:00 Denys Vlasenko : >> Applied, thanks. >> >> On Fri, Aug 25, 2017 at 10:42 PM, Johannes Schindelin >>

Re: [PATCH] xargs: support -a args-file

2017-08-30 Thread Xabier Oneca -- xOneca
Hello, 2017-08-29 21:06 GMT+02:00 Denys Vlasenko : > Applied, thanks. > > On Fri, Aug 25, 2017 at 10:42 PM, Johannes Schindelin > wrote: >> The GNU-specific option -a lets xargs read the arguments from a file >> rather than from stdin. >> >>