Skip to content

Commit 5cf88c8

Browse files
authored
Merge pull request #71 from Sh3llch0k/patch-1
Change bashrc to bash_aliases source for installation
2 parents e8c6453 + 5e88323 commit 5cf88c8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

source/getting-started/install.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,16 @@ The installation of Exegol on Linux, macOS and Windows are very similar. It can
317317
echo "alias exegol='sudo -E $(which exegol)'" >> ~/.zshrc
318318
source ~/.zshrc
319319
320+
.. tip::distribution
321+
322+
Please note that on most Linux distros, .bash_aliases is included in .bashrc. However, this is not the case in some distributions (i.e. Arch Linux). If this is your case, it is recommended to include .bash_aliases in .bashrc by adding these lines in your .bashrc file (for more details, please follow the documentation of your Linux distribution):
323+
324+
.. code-block:: bash
325+
326+
if [ -f ~/.bash_aliases ]; then
327+
. ~/.bash_aliases
328+
fi
329+
320330
.. tab:: Run as user
321331

322332
.. warning::

0 commit comments

Comments
 (0)