bebou

Le site web bebou.netlib.re - retour accueil

git clone git://bebou.netlib.re/bebou
Log | Files | Refs |

slug (149B)


      1 #! /bin/sh
      2 
      3 find public -type f -iname '*.html' |
      4 xargs grep -Er 'id="' |
      5 	cut -b7- |
      6 	fzy |
      7 	sed -E 's,:.+id=",#,;s/index.html//' |
      8 	cut -d'"' -f1
      9