scripts

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

xedit-filter (147B)


      1 #!/bin/sh
      2 
      3 # Open stdin in a text editor and sends modified selection to stdout
      4 # Requires: xedit
      5 
      6 f=$(mktemp)
      7 cat > "$f"
      8 xedit "$f" && cat "$f" 
      9