Skip to content
Snippets Groups Projects
Commit 504b8c4f authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fixed script for user-doc generation

It could be that this problem was coming from my specific awk version.
Anyway, now it seems more robust.
parent 6ec6b4eb
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,8 @@ awk 'BEGIN{gfile="automatic/GLOSSARY1.list"}{ ...@@ -53,7 +53,8 @@ awk 'BEGIN{gfile="automatic/GLOSSARY1.list"}{
lfile="automatic/"$2".list" lfile="automatic/"$2".list"
print "<tr> <td width=5%> \\subpage ", $3,"</td> <td>" > lfile print "<tr> <td width=5%> \\subpage ", $3,"</td> <td>" > lfile
printf "<tr> <td width=5%> \\ref %s </td><td> %s </td><td>",$3, $2 > gfile # printf "<tr> <td width=5%> \\ref %s </td><td> %s </td><td>",$3, $2 > gfile
printf "<tr> <td width=%s> \\ref %s </td><td> %s </td><td>","5%",$3, $2 > gfile
if(output!="")close(output); if(output!="")close(output);
output="automatic/"$3".tmp"; output="automatic/"$3".tmp";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment