- or download this
grep /\Q$choice\E/, @REPORT && do {
last READ_LOOP;
};
- or download this
grep(/\Q$choice\E/, @REPORT) && do {
last READ_LOOP;
};
- or download this
user@unforgiven:~$ perl -MO=Deparse -e 'grep /\Q$choice\E/, @REPORT &&
+ do {
last READ_LOOP;
...
last READ_LOOP;
}
-e syntax OK