st/st-pager

6 lines
117 B
Bash
Executable File

#!/bin/sh
tmpfile="$(mktemp /tmp/st-XXXXXX)"
cat >"$tmpfile"
st -e nvim -c 'normal G' -R "$tmpfile"
rm -f "$tmpfile"