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

asfd
# 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