RE: [PATCH 3/3] leaking_addresses: Expand tilde in output file name

2019-02-14 Thread David Laight
From: Tobin C. Harding > Sent: 13 February 2019 20:31 > > On Wed, Feb 13, 2019 at 03:56:47PM +, David Laight wrote: > > From: Tobin C. Harding > > > Sent: 07 February 2019 22:50 > > > > > > Currently if user passes an output file to the script via > > > --output-raw we do not handle expansion

Re: [PATCH 3/3] leaking_addresses: Expand tilde in output file name

2019-02-13 Thread Tobin C. Harding
On Thu, Feb 07, 2019 at 04:35:55PM -0700, Tycho Andersen wrote: > On Fri, Feb 08, 2019 at 09:50:26AM +1100, Tobin C. Harding wrote: > > Currently if user passes an output file to the script via > > --output-raw we do not handle expansion of tilde. > > > > Use perl function glob() to expand tilde i

Re: [PATCH 3/3] leaking_addresses: Expand tilde in output file name

2019-02-13 Thread Tobin C. Harding
On Wed, Feb 13, 2019 at 03:56:47PM +, David Laight wrote: > From: Tobin C. Harding > > Sent: 07 February 2019 22:50 > > > > Currently if user passes an output file to the script via > > --output-raw we do not handle expansion of tilde. > > > > Use perl function glob() to expand tilde in outpu

RE: [PATCH 3/3] leaking_addresses: Expand tilde in output file name

2019-02-13 Thread David Laight
From: Tobin C. Harding > Sent: 07 February 2019 22:50 > > Currently if user passes an output file to the script via > --output-raw we do not handle expansion of tilde. > > Use perl function glob() to expand tilde in output file name. What happens if glob() returns multiple files? I'm guessing th

Re: [PATCH 3/3] leaking_addresses: Expand tilde in output file name

2019-02-08 Thread Tobin C. Harding
On Thu, Feb 07, 2019 at 04:35:55PM -0700, Tycho Andersen wrote: > On Fri, Feb 08, 2019 at 09:50:26AM +1100, Tobin C. Harding wrote: > > Currently if user passes an output file to the script via > > --output-raw we do not handle expansion of tilde. > > > > Use perl function glob() to expand tilde i

Re: [PATCH 3/3] leaking_addresses: Expand tilde in output file name

2019-02-07 Thread Tycho Andersen
On Fri, Feb 08, 2019 at 09:50:26AM +1100, Tobin C. Harding wrote: > Currently if user passes an output file to the script via > --output-raw we do not handle expansion of tilde. > > Use perl function glob() to expand tilde in output file name. > > Signed-off-by: Tobin C. Harding > --- > scripts

[PATCH 3/3] leaking_addresses: Expand tilde in output file name

2019-02-07 Thread Tobin C. Harding
Currently if user passes an output file to the script via --output-raw we do not handle expansion of tilde. Use perl function glob() to expand tilde in output file name. Signed-off-by: Tobin C. Harding --- scripts/leaking_addresses.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff