aboutsummaryrefslogtreecommitdiff
path: root/SlackTools
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2021-06-21 16:43:04 -0400
committerB. Watson <yalhcru@gmail.com>2021-06-21 16:43:04 -0400
commit2bbcfce248f12cf570c0e3c3aa706ccc85ef5597 (patch)
tree37bba84447cb1562a59839f7ca76a128ea694752 /SlackTools
parent1d3367359a20bf720388ec92fb11b3ebc67cfe8e (diff)
downloadlimnoria.slackfacts.plugins-2bbcfce248f12cf570c0e3c3aa706ccc85ef5597.tar.gz
SlackTools: update !filesearch help
Diffstat (limited to 'SlackTools')
-rw-r--r--SlackTools/plugin.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/SlackTools/plugin.py b/SlackTools/plugin.py
index 26b63ab..7630976 100644
--- a/SlackTools/plugin.py
+++ b/SlackTools/plugin.py
@@ -155,10 +155,10 @@ class SlackTools(callbacks.Plugin):
""" <filename>
Search the Slackware package database for packages that contain files
- named <filename>. This is a case-sensitive exact match, by default (e.g.
- "/bin/ls" does not match "/usr/bin/ls" nor "/bin/lsattr"). You can use *
- for globbing, e.g. "/bin/ls*" to match all files in /bin whose names begin
- with "ls".
+ named <filename>. This is a case-sensitive match. If <filename>
+ begins with a slash (/), it's an exact match (e.g. /bin/ls will not
+ match /bin/lsattr). If the first character is not a slash, it's a
+ substring match (so bin/ls will match both /bin/ls and /bin/lsattr).
"""
self.PkgQuery(irc, msg, 'file', file)