From 9cf0ee43e72dec65365ffa2e2c2da4cb2ebc3b5d Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Tue, 29 Nov 2022 19:22:27 +1300 Subject: [PATCH] doc: Use POSIX syntax to source file Avoids bashism in case another shell is active. --- doc/using/configuration.chapter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/using/configuration.chapter.md b/doc/using/configuration.chapter.md index 1bf18eab5710..0391af0f1760 100644 --- a/doc/using/configuration.chapter.md +++ b/doc/using/configuration.chapter.md @@ -319,7 +319,7 @@ if [ -d "${HOME}/.nix-profile/etc/profile.d" ]; then fi ``` -Now just run `source "${HOME}/.profile"` and you can start loading man pages from your environment. +Now just run `. "${HOME}/.profile"` and you can start loading man pages from your environment. ### GNU info setup {#sec-gnu-info-setup}