Wieso sagt mein Script "Hallo" und nicht Ciao wie es sollte,
weil $a naemlich 3 und nicht 2 ist??Danke!
==================================================
user@server:~$ perl -e 'my $a = "3";
my $ausgabe = "Hallo" if $a eq "2" || "Ciao";
print $ausgabe."\n";
'
Hallo
==================================================
Weil "Ciao" true
ist.