Skip to content

Instantly share code, notes, and snippets.

@AlexDaniel
Created July 7, 2020 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexDaniel/e679cd69d99b7824a7f44ec837c0dcdf to your computer and use it in GitHub Desktop.
Save AlexDaniel/e679cd69d99b7824a7f44ec837c0dcdf to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
slurp() ~~ /^
(^^
$<date>=[\S+]\s+
$<time>=[\S+]\s+
$<size>=[\S+]\s+
$<path>=[\S+]
$$
|| . { die ‘oh no’ }
)+ %% \n
$/;
say $/[0][0].kv;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment