config

My configuration files and custom scripts.
git clone https://git.tronto.net/config
Download | Log | Files | Refs

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