# Commands * [Command interpreter](#command-interpreter) * [Piping](#piping) * [Substitution](#substitution) * [Chaining](#chaining) * [Variables](#variables) * [Inline invocation](#inline-invocation) * [Types of commands](#types-of-commands) * [Built-in commands](#built-in-commands) * [Creating new built-in commands](#creating-new-built-in-commands) * [Plugins](#plugins) * [Factoids](#factoids) * [Code Factoids](#code-factoids) * [Modules](#modules) * [List of commands](#list-of-commands) * [Administrative commands](#administrative-commands) * [Logging in and out of PBot](#logging-in-and-out-of-pbot) * [login](Admin.md#login) * [logout](Admin.md#logout) * [Admin management commands](#admin-management-commands) * [adminadd](Admin.md#adminadd) * [adminrem](Admin.md#adminrem) * [adminset](Admin.md#adminset) * [adminunset](Admin.md#adminunset) * [list admins](Admin.md#listing-admins) * [Channel management commands](#channel-management-commands) * [join](Admin.md#join) * [part](Admin.md#part) * [chanadd](Admin.md#chanadd) * [chanrem](Admin.md#chanrem) * [chanset](Admin.md#chanset) * [chanunset](Admin.md#chanunset) * [chanlist](Admin.md#chanlist) * [Module management commands](#module-management-commands) * [load](Admin.md#load) * [unload](Admin.md#unload) * [list modules](Admin.md#listing-modules) * [Plugin management commands](#plugin-management-commands) * [plug](Admin.md#plug) * [unplug](Admin.md#unplug) * [replug](Admin.md#replug) * [pluglist](Admin.md#pluglist) * [Command metadata commands](#command-metadata-commands) * [cmdset](Admin.md#cmdset) * [cmdunset](Admin.md#cmdunset) * [Registry commands](#registry-commands) * [regset](Registry.md#regset) * [regunset](Registry.md#regunset) * [regchange](Registry.md#regchange) * [regshow](Registry.md#regshow) * [regfind](Registry.md#regfind) * [regsetmeta](Registry.md#regsetmeta) * [regunsetmeta](Registry.md#regunsetmeta) * [Miscellaneous admin commands](#miscellaneous-admin-commands) * [export](Admin.md#export) * [refresh](Admin.md#refresh]) * [reload](Admin.md#reload]) * [sl](Admin.md#sl) * [die](Admin.md#die) * [Factoid commands](#factoid-commands) * [Adding/remove factoids](#addingremove-factoids) * [factadd](Factoids.md#factadd) * [factrem](Factoids.md#factrem) * [factalias](Factoids.md#factalias) * [Displaying factoids](#displaying-factoids) * [fact](Factoids.md#fact) * [factshow](Factoids.md#factshow) * [Editing factoids](#editing-factoids) * [factchange](Factoids.md#factchange) * [factmove](Factoids.md#factmove) * [factundo](Factoids.md#factundo) * [factredo](Factoids.md#factredo) * [factset](Factoids.md#factset) * [factunset](Factoids.md#factunset) * [Information about factoids](#information-about-factoids) * [factlog](Factoids.md#factlog) * [factfind](Factoids.md#factfind) * [factinfo](Factoids.md#factinfo) * [count](Factoids.md#count) * [histogram](Factoids.md#histogram) * [top20](Factoids.md#top20) * [Miscellaneous commands](#miscellaneous-commands) ## Command interpreter PBot has a powerful command interpreter with useful functionality. ### Piping You can pipe output from one command as input into another command, indefinitely. !echo hello world | {sed s/world/everybody/} | {uc} HELLO EVERYBODY ### Substitution You can insert the output from another command at any point within a command. This substitutes the command with its output at the point where the command was used. !echo This is &{echo a demonstration} of command substitution This is a demonstration of command substitution For example, suppose you want to make a Google Image Search command. The naive way would be to simply do: !factadd img /call echo https://google.com/search?tbm=isch&q=$args Unfortuately this would not support queries containing spaces or certain symbols. But never fear! We can use command substitution and the `uri_escape` function from the `func` command. Note that you must escape the command substitution to insert it literally into the factoid otherwise it will be expanded first. !factadd img /call echo https://google.com/search?tbm=isch&q=\&{func uri_escape $args} !img spaces & stuff https://google.com/search?tbm=isch&q=spaces%20%26%20stuff ### Chaining You can execute multiple commands sequentially as one command. !echo Test! ;;; me smiles. ;;; version Test! * PBot smiles. PBot version 2696 2020-01-04 ### Variables You can use factoids as variables and interpolate them within commands. !factadd greeting "Hello, world" !echo greeting is $greeting greeting is Hello, world PBot variable interpolation supports [expansion modifiers](doc/Factoids.md#expansion-modifiers), which can be chained to combine their effects. !echo $greeting:uc HELLO, WORLD ### Inline invocation You can invoke up to three commands inlined within a message. If the message is addressed to a nick, the output will also be addressed to them. newuser13: Check the !{version} and the !{help} documentation. newuser13: PBot version 2696 2020-01-04 newuser13: To learn all about me, see https://github.com/pragma-/pbot/tree/master/doc ## Types of commands There are several ways of adding new commands to PBot. We'll go over them here. ### Built-in commands Built-in commands are commands that are internal and native to PBot. They are executed within PBot's API and context. They have access to PBot internal subroutine and data structures. #### Creating new built-in commands Built-in commands are created via the `register()` function of the `Commands` module. Such commands are registered throughout PBot's source code. The owner of the PBot instance can locally add new commands by editing PBot's source code or by acquiring and loading Plugins. #### Plugins Additional built-in commands can be created by loading PBot Plugins. Plugins are stand-alone self-contained units of code that can be loaded by the PBot owner. Plugins have access to PBot's internal APIs and data structures. ### Factoids Factoids are another type of command. Factoids are simple textual strings that anybody can create. At their most simple, they display their text when invoked. However, significantly more complex Factoids can be created by using the powerful interpreter and by using the even more powerful `/code` Factoid command. Factoids do not have access to PBot's internal API or data structures. #### Code Factoids Code Factoids are Factoids whose text begins with the `/code` command. These Factoids will execute their text using the scripting or programming language specified by the `/code` command. Code Factoids do not have access to PBot's internal API or data structures. #### Modules Modules are simple stand-alone external command-line scripts and programs. Just about any application that can be run in your command-line shell can be loaded as a PBot module. Modules do not have access to PBot's internal API or data structures. ## List of commands Here is the list of all of PBot's built-in commands and some of the more useful Factoids, Plugins and Modules. ### Administrative commands #### Logging in and out of PBot ##### [login](Admin.md#login) ##### [logout](Admin.md#logout) #### Admin management commands ##### [adminadd](Admin.md#adminadd) ##### [adminrem](Admin.md#adminrem) ##### [adminset](Admin.md#adminset) ##### [adminunset](Admin.md#adminunset) ##### [list admins](Admin.md#listing-admins) #### Channel management commands ##### [join](Admin.md#join) ##### [part](Admin.md#part) ##### [chanadd](Admin.md#chanadd) ##### [chanrem](Admin.md#chanrem) ##### [chanset](Admin.md#chanset) ##### [chanunset](Admin.md#chanunset) ##### [chanlist](Admin.md#chanlist) #### Module management commands ##### [load](Admin.md#load) ##### [unload](Admin.md#unload) ##### [list modules](Admin.md#listing-modules) #### Plugin management commands ##### [plug](Admin.md#plug) ##### [unplug](Admin.md#unplug) ##### [replug](Admin.md#replug) ##### [pluglist](Admin.md#pluglist) #### Command metadata commands ##### [cmdset](Admin.md#cmdset) ##### [cmdunset](Admin.md#cmdunset) #### Registry commands ##### [regset](Registry.md#regset) ##### [regunset](Registry.md#regunset) ##### [regchange](Registry.md#regchange) ##### [regshow](Registry.md#regshow) ##### [regfind](Registry.md#regfind) ##### [regsetmeta](Registry.md#regsetmeta) ##### [regunsetmeta](Registry.md#regunsetmeta) #### Miscellaneous admin commands ##### [export](Admin.md#export) ##### [refresh](Admin.md#refresh]) ##### [reload](Admin.md#reload]) ##### [sl](Admin.md#sl) ##### [die](Admin.md#die) ### Factoid commands #### Adding/remove factoids ##### [factadd](Factoids.md#factadd) ##### [factrem](Factoids.md#factrem) ##### [factalias](Factoids.md#factalias) #### Displaying factoids ##### [fact](Factoids.md#fact) ##### [factshow](Factoids.md#factshow) #### Editing factoids ##### [factchange](Factoids.md#factchange) ##### [factmove](Factoids.md#factmove) ##### [factundo](Factoids.md#factundo) ##### [factredo](Factoids.md#factredo) ##### [factset](Factoids.md#factset) ##### [factunset](Factoids.md#factunset) #### Information about factoids ##### [factlog](Factoids.md#factlog) ##### [factfind](Factoids.md#factfind) ##### [factinfo](Factoids.md#factinfo) ##### [count](Factoids.md#count) ##### [histogram](Factoids.md#histogram) ##### [top20](Factoids.md#top20) ### Miscellaneous commands