Skip to main content

Uniface 9: Removing numbers in pro files

  • November 19, 2018
  • 1 reply
  • 0 views

Jan Cees Boogaard

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 reply

Jan Cees Boogaard

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

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)