1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-11 05:17:44 +03:00
systemd-stable/tools/make-index-md.sh

16 lines
323 B
Bash
Raw Normal View History

#!/bin/sh
set -eu
cd "$@"/docs/
(
echo "# systemd Documentation"
for f in *.md ; do
if [ "x$f" != "xindex.md" ] ; then
t=`grep "^# " "$f" | head -n 1 | sed -e 's/^#\s*//'`
echo -e "\n* [$t]($f)"
fi
done
) > index.md