-
-
Save AlexDaniel/4e97dcb0349ec4bac7846719b2b481a3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use nqp; | |
my $html; | |
my $proc = run "wget", "-o", "/dev/null", "-O", "-", "https://www.fimfiction.net/bookshelf/149291/", :out; | |
$html = $proc.out.slurp-rest; | |
say "html is " ~ $html.chars ~ " chars"; | |
nqp::force_gc; | |
say "/proc/$*PID/statm".IO.lines[0].split(/\s/)[5] * 4096 / 1024 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment