Yes, it could be a good solution! I only need to find an enough short prefix.
"J" for Jell. >>j/cp file1 file2 Or better, since primary usage are my commands, can I "subclass" Rebol commands as... >> reb/copy >> reb/print and for my commands: >> copy file1 file2 How can I do ? On 5/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Alessandro: > > > Can you suggest me some solutions, workarounds, etc...? > > Here's a workaround.....It's exactly what I do in a command-line based > application I wrote last year. > > Define all your words in a single object, eg: > > app: make object! [ > print: func .... > copy: func ... > ] > > Then the user just has to be trained that al magic words start app/ > app/print .... > app/copy %file1 %file2 > > Obviously replace 'app with a neat prefix for your application. > > Sunanda > -- > To unsubscribe from the list, just send an email to > lists at rebol.com with unsubscribe as the subject. > > -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
