lentejanumerica/genindice.awk

24 lines
439 B
Awk
Raw Permalink Normal View History

2021-05-20 22:58:00 +00:00
# ls src/*gmo | awk -f genindice.awk
function link2nombre( t ){ # convierte un nombre con "_" a uno con espacios
gsub("_"," ",t);
sub(".gmo", "", t)
return t
}
BEGIN{
print "# índice de páginas"
print
2021-06-08 01:22:33 +00:00
print "modificadas recientemente, arriba"
print
2021-05-20 22:58:00 +00:00
}
{
sub("src/","",$0)
nombre = link2nombre($0) # convierte _ a espacios
sub(".gmo",".gmi",$0)
if(nombre!="index") # no imprimas el índice
print "=> ./"$0" {"nombre"}"
}