Re: Quoting issue in Windows

2019-12-02 Thread ToddAndMargo via perl6-users
On 2019-12-01 19:28, yary wrote: None of the examples in the earlier emails were on the command line. Please only use the examples in my prior message in this thread inside a program file. Using these on the command-line is outside the scope of what I want to deal with here. Windows quoting o

Re: Quoting issue in Windows

2019-12-02 Thread The Sidhekin
On Mon, Dec 2, 2019 at 11:07 AM ToddAndMargo via perl6-users < perl6-us...@perl.org> wrote: > > What is the world is the Q doing in Q'\'? > https://docs.perl6.org/language/quoting It would be clearer to write it as Q[\], I guess. Eirik

Re: Quoting issue in Windows

2019-12-02 Thread ToddAndMargo via perl6-users
On 2019-12-02 07:02, The Sidhekin wrote: On Mon, Dec 2, 2019 at 11:07 AM ToddAndMargo via perl6-users mailto:perl6-us...@perl.org>> wrote: What is the world is the Q doing in Q'\'? https://docs.perl6.org/language/quoting   It would be clearer to write it as Q[\], I guess. Eirik

Re: Quoting issue in Windows

2019-12-02 Thread ToddAndMargo via perl6-users
On 2019-12-02 07:02, The Sidhekin wrote: On Mon, Dec 2, 2019 at 11:07 AM ToddAndMargo via perl6-users mailto:perl6-us...@perl.org>> wrote: What is the world is the Q doing in Q'\'? https://docs.perl6.org/language/quoting   It would be clearer to write it as Q[\], I guess. Eirik H

rmdir question

2019-12-02 Thread ToddAndMargo via perl6-users
Hi All, From the manual page of rmdir: https://docs.perl6.org/routine/rmdir subrmdir(*@dirs --> List:D) method rmdir(IO::Path:D: --> True) Does *@dirs mean I can give it multiple directories as an array? What does "--> List:D" give me back? An array of Booleans as to which di

Re: rmdir question

2019-12-02 Thread Paul Procacci
It seems to me all your questions are answered by the very documentation you referenced. >> Does *@dirs mean I can give it multiple directories as an array? Remove the invocant in sub form of the provided directories in the given list . Example: - # mkdir {

Re: rmdir question

2019-12-02 Thread ToddAndMargo via perl6-users
On Mon, Dec 2, 2019 at 9:39 PM ToddAndMargo via perl6-users mailto:perl6-us...@perl.org>> wrote: Hi All, From the manual page of rmdir: https://docs.perl6.org/routine/rmdir subrmdir(*@dirs --> List:D) method rmdir(IO::Path:D: --> True) Does *@dirs