I am getting " unterminated pattern error" while I excute the script. If I write the pattern as single line on vi editor it will work but the script will be ugly.
$1~/^A|B|c|d|e|f|g|h/ THIS WILL WORK WITH OUT ANY PROBLEM
If I wrote the same line as:
$1~/^A|B
|C|D
|E|F
|G|h/
I will get an error. The line too long.
Help!
Dereje
$1~/^A|B|c|d|e|f|g|h/ THIS WILL WORK WITH OUT ANY PROBLEM
If I wrote the same line as:
$1~/^A|B
|C|D
|E|F
|G|h/
I will get an error. The line too long.
Help!
Dereje