Skip to content

Commit

Permalink
Merge pull request #71 from Sh3llch0k/patch-1
Browse files Browse the repository at this point in the history
Change bashrc to bash_aliases source for installation
  • Loading branch information
ShutdownRepo authored Dec 16, 2024
2 parents e8c6453 + 5e88323 commit 5cf88c8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions source/getting-started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,16 @@ The installation of Exegol on Linux, macOS and Windows are very similar. It can
echo "alias exegol='sudo -E $(which exegol)'" >> ~/.zshrc
source ~/.zshrc
.. tip::distribution
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):
.. code-block:: bash
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
.. tab:: Run as user

.. warning::
Expand Down

0 comments on commit 5cf88c8

Please sign in to comment.