7 lines
269 B
Bash
7 lines
269 B
Bash
#!/bin/sh
|
|
|
|
sed -n '/<nil id="nil">/,/<\/nil>/p' sitemap.html > menu.html
|
|
sed -i -e 's/nil id="nil"/nav class="navbar"/g' menu.html
|
|
sed -i -e 's/\/nil/\/nav/g' menu.html
|
|
sed -i -e 's/href="/href="..\//g' menu.html
|
|
sed 's/\.\.\//.\/storie\//g' menu.html > menu-lev0.html
|