From 4e2cdbe60fa5fab8925d815aa3d05c728ef9a314 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 21 Jun 2021 16:01:24 -0400 Subject: Add useful docs to README.txt --- README.txt | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 105 insertions(+), 1 deletion(-) (limited to 'README.txt') diff --git a/README.txt b/README.txt index b1b1557..26054dd 100644 --- a/README.txt +++ b/README.txt @@ -1 +1,105 @@ -slackfacts bot plugins +limnoria.slackfacts.plugins README + +This is a collection of Slackware-specific bot plugins for the +slackfacts bot, which lives in ##slackware and ##slackware.uk on +irc.libera.chat. + +Commands supported are: + +!man - display man page summaries (like "man -f" or "whatis"). + +!locate - find files in the Slackware package database, and show + their locations. + +!which - like !locate, but only searches bin/ directories. + +!pkgsearch - search for packages by name in the Slackware package + database. + +!filesearch - find packages containing the given file (similar to + "slackpkg file-search"). + +!srcsearch - given a package name, display the URL for the package's + source directory on the slackware.uk mirror. + +!pkg - wrapper for !pkgsearch, !filesearch, !srcsearch. slightly less + typing involved, but you have to remember the options (see + !pkg examples below). + +All the commands have help messages, which you can access via +!help (don't include the ! in though). + +Currently only the package database from Slackware 14.2 x86_64 is +supported. + +To avoid spamming the channel, commands that can return multiple +results are limited to 5 results. If you use a private message to +run the command, you'll get the results privately, and the limit is +increased to 25. + +Examples: + +-- Search all manual sections: + + !man printf + user: printf(1): format and print data | printf(3): formatted + output conversion + +-- Search only one manual section: + + !man 3 printf + user: printf(3): formatted output conversion + +-- Find files. This is a substring match, so: + + !locate /bin/ls + user: /bin/ls | /bin/lsblk | /bin/lsmod [l] | /usr/bin/ls [l] | + /usr/bin/lsattr | /usr/bin/lsb [l] | [too many results, only + showing first 5] + +[Note: symlinks are listed with [l] after the path] + +-- Find the ls command: + + !which ls + user: /bin/ls | /usr/bin/ls [l] + +-- Find packages by name, search all categories: + + !pkgsearch core + user: a/coreutils: core GNU utilities | kde/nepomuk-core: + Nepomuk Core utilities and libraries | l/at-spi2-core: + Assistive Technology Service Provider Interface core | + l/xapian-core: Search Engine Library + +With no options, !pkg is a synonym for !pkgsearch. + +-- Find packages by name, search one category: + + !pkgsearch a/core + user: a/coreutils: core GNU utilities + +-- Find which package owns a file. This is an exact match if you give an + absolute path (if the search term starts with a slash), or a substring + match otherwise. You can also use * for globbing (e.g. /bin/ls*). + + !filesearch /bin/ls + user: a/coreutils: core GNU utilities + +!pkg -f is a synonym for !filesearch. + +-- Find the source (and SlackBuild) for a package (exact match, no +globbing/wildcards allowed): + + !srcsearch coreutils + user: + https://slackware.uk/slackware/slackware64-14.2/source/a/coreutils/ + +!pkg -s is a synonym for !srcsearch. + +If there had been an updated coreutils in patches/, the updated version's +source would have been found. For instance: + + !srcsearch irssi + user: + https://slackware.uk/slackware/slackware64-14.2/patches/source/irssi/ -- cgit v1.2.3