in reply to Re: Opening not-existing command - Error Handling
in thread Opening not-existing command - Error Handling
I tried the following:
#!/usr/bin/perl use strict; use warnings; open(my $CMD, "dira |") || die "another text"; # ... close($CMD);
But the program still produces the same error message:
Der Befehl "dira" ist entweder falsch geschrieben oder konnte nicht gefunden werden.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Opening not-existing command - Error Handling
by AR (Friar) on Aug 16, 2011 at 15:29 UTC | |
|
Re^3: Opening not-existing command - Error Handling
by Anonymous Monk on Aug 17, 2011 at 04:13 UTC | |
by Dirk80 (Pilgrim) on Aug 17, 2011 at 12:37 UTC |