Re: qqx with quotes

2020-02-25 Thread Paul Procacci
Perl6 version 2019.03 On Tue, Feb 25, 2020 at 12:12 PM ToddAndMargo via perl6-users < perl6-users@perl.org> wrote: > >> On Mon, Feb 24, 2020 at 4:01 PM ToddAndMargo via perl6-users > >> mailto:perl6-users@perl.org>> wrote: > >> > >> Hi All, > >> > >> Windows 7 > >> > >> In the followi

Re: qqx with quotes

2020-02-25 Thread ToddAndMargo via perl6-users
On Mon, Feb 24, 2020 at 4:01 PM ToddAndMargo via perl6-users mailto:perl6-users@perl.org>> wrote: Hi All, Windows 7 In the following @Result = qqx { C:/Windows/System32/fsutil.exe usn readdata \"$FileName\" }.lines; $FileName needs to be in quotes as it can have

Re: qqx with quotes

2020-02-25 Thread Paul Procacci
The following works on FreeBSD: my $fn = "file name"; say qqx { ls -l "$fn" }; Not sure why this would be any different on Windows. On Mon, Feb 24, 2020 at 4:01 PM ToddAndMargo via perl6-users < perl6-users@perl.org> wrote: > Hi All, > > Windows 7 > > In the following > > @Result = qqx { C:/Win