On RISC OS if you do *help m. then it will print out help for all commands that begin with m.
The current help command on the Agon only performs complete word matching for commands, so therefore it will complain Command not found: m. if you've tried to do *help m.. Ideally it should show help for mem, mkdir, mount, move and mv.
(On RISC OS performing *help . shows help on all keywords)
generic match function being worked on as part of #91 includes support for pattern matches that end with a ., which will be instrumental in getting this to work
On RISC OS if you do
*help m.
then it will print out help for all commands that begin withm
.The current
help
command on the Agon only performs complete word matching for commands, so therefore it will complainCommand not found: m.
if you've tried to do*help m.
. Ideally it should show help formem
,mkdir
,mount
,move
andmv
.(On RISC OS performing
*help .
shows help on all keywords)