scripts

Various scripts for UNIX-like systems
git clone https://git.tronto.net/scripts
Download | Log | Files | Refs | README

templess (249B)


      1 #!/bin/sh
      2 
      3 # Write standard in to a temporary file and sends it to a pager.
      4 # This is used to be able to pipe the content displayed by less to
      5 # an external program.
      6 
      7 pager=${PAGER:-less}
      8 tempfile=$(mktemp)
      9 
     10 cat > "$tempfile" && $pager "$tempfile"