diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-07-05 02:36:52 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-07-05 18:08:47 -0400 |
commit | 626705238075a1aceca518e4d464b5df6458750f (patch) | |
tree | 74d8d67eea8d4311de5f45f29ff2a26acb6bb3a2 /src/lib/librelib.1.ronn | |
parent | 739f574f08814694c1b85d72ae8964bc0f0bdf97 (diff) |
quote calls to librelib
Diffstat (limited to 'src/lib/librelib.1.ronn')
-rw-r--r-- | src/lib/librelib.1.ronn | 14 |
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 |