1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-help

15 lines
355 B
Plaintext
Raw Normal View History

2020-06-12 21:00:58 +00:00
#!/bin/sh
# Read KISS documentation
cd "$KISS_ROOT/usr/share/doc/kiss" 2>/dev/null || {
printf 'Documentation is missing from /usr/share/doc/kiss\n'
exit 1
}
[ -f "${1:-.}/index.txt" ] && file=./${1:-.}/index.txt
[ -f "${1:-.}.txt" ] && file=./${1:-.}.txt
2020-06-21 14:32:18 +00:00
[ -f "${1:-:}" ] && file=./${1:-.}
2020-06-12 21:00:58 +00:00
2020-06-12 21:25:03 +00:00
"${PAGER:-less}" "${file:-404.txt}"
2020-06-12 21:00:58 +00:00