For more than one time, once I run the following code to untar several files (total ~4G), the remote server always crash. I use ssh to reach remote server. The final data is around ~30G. I am wondering does this code cause memory leak? Or it eat all CPU space? I do not have any knowledge regarding the hardware.
ANY input is appreciated.
############
#!/usr/bin/perl
use strict;
foreach my $i (0..59)
{
my $com = "tar -xvzf data$i.tgz";
`$com`;
}
############
ANY input is appreciated.
############
#!/usr/bin/perl
use strict;
foreach my $i (0..59)
{
my $com = "tar -xvzf data$i.tgz";
`$com`;
}
############