I would like the $?N feature to support things like 1-, for example:

Code:
//tokenize 32 1 2 3 | echo -a $?1-


The above would echo 1 2 3 instead of 1 as it currently does.

Code:
//tokenize 32 1 2 3 | echo -a $?1-2


The above would echo 1 2

I would also like it to support $0 and $*:

Code:
//tokenize 32 1 2 3 | echo -a $?0


The above would echo 3

Code:
//tokenize 32 1 2 3 | echo -a $?*


The above would echo
1
2
3


I know I could just use $?1 $2- but I'd prefer using $?1-


New username: hixxy