- or download this
chop($cwd = `pwd`);
- or download this
print "Before: ", $!, "\n";
my $cwd = `pwd`;
print "After: ", $!, "\n";
- or download this
Before:
After: Illegal seek
- or download this
print "Before: ", $!, "\n";
my $cwd = `date`;
print "After: ", $!, "\n";