aboutsummaryrefslogtreecommitdiff
path: root/templess
blob: ec3b999045b7a02bb56662a90ea7b13d6f9baa09 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# Write standard in to a temporary file and sends it to a pager.

pager=${PAGER:-less}
tempfile=$(mktemp)

cat > "$tempfile" && $pager "$tempfile" 

Generated with cgit - Back to sebastiano.tronto.net