- or download this
perl -we 'my $x = `cat file1`' # seg faults
- or download this
perl -we 'my @x = `cat file1`' # works fine
- or download this
perl -we 'my $x = `cat file2`' # works fine
- or download this
perl -we 'my $x = `cat file2`; $x .= `cat file2`' # works fine
- or download this
perl -we 'my $x = `cat file2 file2`'
- or download this
Out of memory in perl:util:safesysmalloc (cygwin perl 5.40)
- or download this
Out of memory! (linux perl 5.38)
- or download this
Segmentation fault