aboutsummaryrefslogtreecommitdiff
path: root/xedit-filter
blob: 93e908c7c5b14c95a72fe8034bd62e4dbaf95e6c (plain)
1
2
3
4
5
6
7
8
9
10
#/!bin/sh

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

xeditor=${XEDITOR:-gedit}

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

Generated with cgit - Back to sebastiano.tronto.net