Use the alias command to create your own commandsets - binbash23/p GitHub Wiki

A nice way to use the pshell fast is to create aliases for your favorite commands. It is possible to alias onw or multiple commands to numbers. For example if you often use the "status" command, you can create an alias for it like this:

alias 1 status

When you now execute "1", the status command will be executed. To see the current aliases, use:

alias

To unset an alias, use:

alias 1 -

Another example is to use an alias to merge your database to all your favorite merge destinations:

alias 5 merge2dropbox;merge2ssh;merge2file

When you execute "5", your database will be merged to the default dropbox, -ssh and -file merge target.