Search:
Login
Preferences
Help/Guide
About Trac
Register
Home
Timeline
Roadmap
Browse Source
View Tickets
Search
Downloads
Context Navigation
Back to Ticket #2629
Ticket #2629
: mcedit.less.sh
File mcedit.less.sh,
131 bytes
(added by keasy,
13 years
ago)
script to open stdin data in mcedit
Line
1
#!/bin/sh
2
3
if
test
$1
;
then
4
mcedit
"
$@
"
5
else
6
TEMP
=
`
mktemp
`
7
cat /dev/stdin > $TEMP
8
mcedit $TEMP < /dev/tty
9
fi
10
exit
11
Download in other formats:
Original Format