You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
439 B
Awk
24 lines
439 B
Awk
# 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
|
|
print "modificadas recientemente, arriba"
|
|
print
|
|
}
|
|
|
|
{
|
|
sub("src/","",$0)
|
|
nombre = link2nombre($0) # convierte _ a espacios
|
|
sub(".gmo",".gmi",$0)
|
|
|
|
if(nombre!="index") # no imprimas el índice
|
|
print "=> ./"$0" {"nombre"}"
|
|
}
|