mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
11 lines
272 B
Bash
Executable file
11 lines
272 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
|
pandoc -s -f markdown -t man \
|
|
-V title=PECO -V section=1 \
|
|
-V header="User Commands" \
|
|
-V footer="peco" \
|
|
-o "$SCRIPT_DIR/peco.1" \
|
|
"$REPO_ROOT/README.md"
|