plan9port/bin/quote1

19 lines
251 B
Text
Raw Permalink Normal View History

#!/usr/local/plan9/bin/rc
2004-10-17 04:02:55 +00:00
2006-10-12 02:25:31 +00:00
. 9.rc
2004-10-17 04:02:55 +00:00
PROMPT='[^ ]*[%;$#][ ]+'
fn cmds {
wintext | sed -n 's/^'$PROMPT'([^"])/ \1/p'
2004-10-17 04:02:55 +00:00
}
switch($#*) {
case 0
cmds | tail -1
case *
cmds | grep -n '^ '^$"* | tail -r |
sort -u +1 | sort -n |
sed 's/^[0-9]+: //'
2004-10-17 04:02:55 +00:00
}