summaryrefslogtreecommitdiff
path: root/src/lib/librelib.1.ronn
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/librelib.1.ronn')
-rw-r--r--src/lib/librelib.1.ronn14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/librelib.1.ronn b/src/lib/librelib.1.ronn
index b3fc35e..fe64e92 100644
--- a/src/lib/librelib.1.ronn
+++ b/src/lib/librelib.1.ronn
@@ -3,7 +3,7 @@ librelib(1) -- finds a Bash library file
## SYNOPSIS
-`. $(librelib LIBRARY)`<br>
+`. "$(librelib LIBRARY)"`<br>
`librelib -h`
## DESCRIPTION
@@ -32,10 +32,10 @@ When searching for a library, `librelib` first strips `libre` from the
beginning of the name, and `.sh` from the end. This means that all of
the following are equivalent:
- . $(librelib messages)
- . $(librelib messages.sh)
- . $(librelib libremessages)
- . $(librelib libremessages.sh)
+ . "$(librelib messages)"
+ . "$(librelib messages.sh)"
+ . "$(librelib libremessages)"
+ . "$(librelib libremessages.sh)"
Once it has the 'base' name of the library it is looking for, it looks
for a file with that 'base' name (allowing for, but not requiring
@@ -47,8 +47,8 @@ message to standard error, and exit with a code of 1.
## Examples
- . $(librelib messages)
- . $(librelib conf)
+ . "$(librelib messages)"
+ . "$(librelib conf)"
## SEE ALSO