in reply to System call doesn't work when there is a large amount of data in a hash
What is a "system call"? And how do you pass an in-memory data (the hash) to said system call?
Do you mean something like:
my %hash=(a=>1,b=>2); system("echo", $hash{a}) == 0 or die;
or something like:
use File::Copy; my %hash=(a=>1,b=>2); copy($hash{a}, $hash{b}) or die $!;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: System call doesn't work when there is a large amount of data in a hash
by Nicolasd (Acolyte) on Apr 29, 2020 at 12:47 UTC | |
by marto (Cardinal) on Apr 29, 2020 at 13:01 UTC | |
by Nicolasd (Acolyte) on Apr 29, 2020 at 13:26 UTC | |
by bliako (Abbot) on Apr 29, 2020 at 13:41 UTC | |
by Nicolasd (Acolyte) on Apr 29, 2020 at 13:58 UTC |