Differences From Artifact [b94de50d4f]:
- Executable file mttroot/mtt/bin/trans/mtt_mend_lines — part of check-in [30d1a4a7a7] at 2000-12-28 09:32:04 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 323) [annotate] [blame] [check-ins using] [more...]
To Artifact [0579d4ac5f]:
- Executable file mtt/bin/trans/mtt_mend_lines — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 324) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/mtt_mend_lines
— part of check-in
[66bb5feadf]
at
2002-04-28 18:41:27
on branch origin/master
— Fixed [ 549658 ] awk should be gawk.
Replaced calls to awk with call to gawk. (user: geraint@users.sourceforge.net, size: 324) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 | #!/bin/sh # Copyright (C) 2000 by Peter J. Gawthrop # Fixes broken lines from reduce. #sed 's/[^#]\(.*\)[^;]$/\1\\/' | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh # Copyright (C) 2000 by Peter J. Gawthrop # Fixes broken lines from reduce. #sed 's/[^#]\(.*\)[^;]$/\1\\/' gawk '{ if ((match($1,"#")==0)&&(match($1,"global")==0)&&(match($1,"endfunction")==0)) { if(match($0,";")!=length($0)) printf("%s \\\n",$0) else print $0 } else print $0 |
︙ | ︙ |