Skip to content
Jens Heine edited this page Mar 18, 2024 · 13 revisions

Welcome to the p wiki!

You might want to start by installing p on your system.

Linux

Install p on linux

Windows

Install p on windows

Help

There is a full documentation of all commands that the pshell offers.

You can see the help for any command with executing "help" plus the name of the command. To see the help for the command she type:

[mary.db] pshell> help she

COMMAND
 she

SYNOPSIS
 she <SEARCHSTRING>

DESCRIPTION
 Alias for searchhelp.
 Use 'help searchhelp' for more info.

[mary.db] pshell>

The command help without any argument shows a list of all possible commands.

If you search for commands that have something to with "delete", execute this:

[mary.db] pshell> she delete

Searching in all help texts for: 'delete'

delete
deleteconnectordb
deletemergehistory
deleteorphanedaccounthistoryentries
forgetdeletedaccounts

[mary.db] pshell> 

You can always shorten the commands by typing the first distinct characters instead of typing the whole command. Also lots of long commands have a shorter version like "/" is the short version of "search".

You can also make use of the alias command which enables you to create your own command short cuts.

Example: if you want to put the command "status" on the shortcut "0":

alias 0 status

Then the command status will be executed when you type "0". For more info type "help alias".

Clone this wiki locally