plan9port/bin/quote1
2020-01-13 11:11:14 -05:00

18 lines
251 B
Bash
Executable file

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