Removing numbers in pro files
Author: lalitpct@gmail.com (lalitpct)
When a pro file is generated it has got line numbers etc as shown below. [ 2] entry do_chmod [ 3] ;-------------- [ 4] variables [ 5] string script_output [ 6] endvariables Is there any setting where I can avoid showing the numbers in the pro files
1 Comment
Local Administrator
Hi lalit, there is no option to remove these numbers. But a simple AWK script (or perl or ...) will do the job for you. $0 ~ /^\[..........\]/ {$0 = substr($0,13)} # remove Include Counters etc.
Author: ulrich-merkel (ulrichmerkel@web.de)