Limnoria-doc/use/plugins/unix.rst

89 lines
2.1 KiB
ReStructuredText
Raw Normal View History

2011-06-28 08:11:32 +02:00
.. _plugin-unix:
The Unix plugin
===============
2011-06-28 17:29:38 +02:00
Utitilies
---------
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
.. _command-unix-errno:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix errno <error number or code>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2011-06-28 08:11:32 +02:00
Returns the number of an errno code, or the errno code of a number.
2011-06-28 17:29:38 +02:00
.. _command-unix-spell:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix spell <word>
^^^^^^^^^^^^^^^^^
2011-06-28 08:11:32 +02:00
Returns the result of passing *<word>* to aspell/ispell. The results
shown are sorted from best to worst in terms of being a likely match
for the spelling of *<word>*.
2011-06-28 17:29:38 +02:00
.. _command-unix-pid:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix pid
^^^^^^^^
2011-06-28 08:11:32 +02:00
Returns the current pid of the process for this Supybot.
2011-06-28 17:29:38 +02:00
.. _command-unix-call:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix call <command to call with any arguments>
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
Calls any command available on the system, and returns its output.
Requires owner capability.
Note that being restricted to owner, this command does not do any
sanity checking on input/output. So it is up to you to make sure
you don't run anything that will spamify your channel or that
will bring your machine to its knees.
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
.. _command-unix-crypt:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix crypt <password> [<salt>]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2011-06-28 08:11:32 +02:00
Returns the resulting of doing a crypt() on *<password>* If *<salt>* is
not given, uses a random salt. If running on a glibc2 system,
prepending '$1$' to your salt will cause crypt to return an MD5sum
based crypt rather than the standard DES based crypt.
2011-06-28 17:29:38 +02:00
.. _command-unix-progstats:
unix progstats
^^^^^^^^^^^^^^
2011-06-28 08:11:32 +02:00
2011-06-29 19:17:50 +02:00
Returns various unix-y information on the running supybot process.
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
.. _command-unix-ping:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix ping [--c <count>] [--i <interval>] [--t <ttl>] [--W <timeout>] <host or ip>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
Sends an ICMP echo request to the specified host.
The arguments correspond with those listed in ping(8). --c is
limited to 10 packets or less (default is 5). --i is limited to 5
or less. --W is limited to 10 or less.
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
Fun
---
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
.. _command-unix-fortune:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix fortune
^^^^^^^^^^^^
Returns a fortune from the \*nix fortune program.
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
.. _command-unix-wtf:
2011-06-28 08:11:32 +02:00
2011-06-28 17:29:38 +02:00
unix wtf [is] <something>
^^^^^^^^^^^^^^^^^^^^^^^^^
Returns wtf *<something>* is. 'wtf' is a \*nix command that first
appeared in NetBSD 1.5. In most \*nices, it's available in some sort
of 'bsdgames' package.