summaryrefslogtreecommitdiff
path: root/scripts/xedit-filter
blob: 7caf12cd93311a1dfe1d2ed5156c4994c5a05021 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# Open stdin in a text editor and sends modified selection to stdout
# Requires: xedit

f=$(mktemp)
cat > "$f"
xedit "$f" && cat "$f" 

Generated with cgit - Back to sebastiano.tronto.net