st/st-pager

6 lines
117 B
Plaintext
Raw Normal View History

2021-08-12 15:44:21 +02:00
#!/bin/sh
tmpfile="$(mktemp /tmp/st-XXXXXX)"
cat >"$tmpfile"
st -e nvim -c 'normal G' -R "$tmpfile"
rm -f "$tmpfile"