Gesendet: Freitag, 21. Oktober 2022 um 05:37 Uhr
Von: "ToddAndMargo via perl6-users"
An: "perl6-users"
Betreff: Rakudo for W7?
Hi All,
Where can I download the latest Rakudo Star
that supports 64 bit Windows 7?
Many thanks,
-T
On 10/21/22 08:48, no...@ist-einmalig.de wrote:
> Hi.
>
> https:
Hi All,
Is there a way to print only the last three lines
in a long file (full on \n's).
In Windows, I am trying to such the last the lines is
> dir /s /A:-D /d /a
...
Total Files Listed:
13671 File(s) 3,265,285,462 bytes
3917 Dir(s) 18,406,518,784 bytes free
An
> On Oct 22, 2022, at 10:28 PM, ToddAndMargo via perl6-users
> wrote:
>
> Hi All,
>
> Is there a way to print only the last three lines
> in a long file (full on \n's).
>
>
> In Windows, I am trying to such the last the lines is
>
> > dir /s /A:-D /d /a
> ...
> Total Files Listed:
>
Hi All,
Does Raku have a folder size command (including sub
folders) or is that a system call?
Many thanks,
-T
--
~~
Computers are like air conditioners.
They malfunction when you open windows
~~
On 10/22/22 21:11, Bruce Gray wrote:
On Oct 22, 2022, at 10:28 PM, ToddAndMargo via perl6-users
wrote:
Hi All,
Is there a way to print only the last three lines
in a long file (full on \n's).
In Windows, I am trying to such the last the lines is
dir /s /A:-D /d /a
...
Total File
> On Oct 22, 2022, at 11:46 PM, ToddAndMargo via perl6-users
> wrote:
>
> On 10/22/22 21:11, Bruce Gray wrote:
>>> On Oct 22, 2022, at 10:28 PM, ToddAndMargo via perl6-users
>>> wrote:
>>>
>>> Hi All,
>>>
>>> Is there a way to print only the last three lines
>>> in a long file (full on \n
> On Oct 22, 2022, at 11:30 PM, ToddAndMargo via perl6-users
> wrote:
>
> Hi All,
>
> Does Raku have a folder size command (including sub
> folders)
> or is that a system call?
There are system calls to get sizes of individual files (Raku IO objects
provide the same function via the `.s()
On 10/22/22 22:46, Bruce Gray wrote:
On Oct 22, 2022, at 11:30 PM, ToddAndMargo via perl6-users
wrote:
Hi All,
Does Raku have a folder size command (including sub
folders)
or is that a system call?
There are system calls to get sizes of individual files (Raku IO objects
provide the s
On 10/22/22 22:33, Bruce Gray wrote:
dir . /s /A:-D /d /a | raku -e "say lines[*-2].words[2]"
It is pretty ! I like it. Thank you!