the following script scans the script.ini file and extracts lines with the form "nxxx=alias" to the pre-declared @out window.
Code:
filter -fwg script.ini @out /n[0-9]+=alias/

I would like the regular expression to change the output from
this form
Quote:
n0=alias someAlias {

to this form
Quote:
alias someAlias {

but my regex skills are somewhat lacking.
I think I need to know more about back references.

cheers