aboutsummaryrefslogtreecommitdiff
path: root/xedit-filter
blob: 9422760df89449ee086c36f0616cf4996fb9a6f3 (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: xeditor

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

Generated with cgit - Back to sebastiano.tronto.net