mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 10:51:20 +03:00
17 lines
402 B
Bash
Executable File
17 lines
402 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd "$@"/docs/
|
|
(
|
|
echo -e "# systemd Documentation\n"
|
|
|
|
for f in *.md ; do
|
|
if [ "x$f" != "xindex.md" ] ; then
|
|
t=`grep "^# " "$f" | head -n 1 | sed -e 's/^#\s*//'`
|
|
u="https://systemd.io/"`echo "$f" | sed -e 's/.md$//'`
|
|
echo "* [$t]($u)"
|
|
fi
|
|
done
|
|
) > index.md
|