navigol.netlify.app Open in urlscan Pro
2600:1f18:16e:df01::65  Public Scan

URL: https://navigol.netlify.app/best-bashprofile-for-mac.html
Submission: On December 09 via api from US — Scanned from US

Form analysis 2 forms found in the DOM

GET #

<form method="get" class="search-form" action="#">
  <input type="search" name="s" id="search-bar" placeholder="Type &amp; Hit Enter.." value="" autocomplete="off">
</form>

GET #

<form role="search" method="get" class="search-form" action="#">
  <label>
    <span class="screen-reader-text">Search for:</span>
    <input type="search" class="search-field" placeholder="Search …" value="" name="s">
  </label>
  <input type="submit" class="search-submit" value="Search">
</form>

Text Content

NAVIGOL


Menu

Best Bash_profile For Mac

Active22 days ago

To make an alias for the Terminal in OS X, you can either put the aliases in
.bash_profile or .bashrc. What is the difference between the two and why would I
choose to put aliases in one and not the other?

Source ~/.bash_profile Now try to type few letters of command and press [TAB],
you will see the auto-completed command or auto-suggested commands(for more than
one matches). The command will complete the remaining of the file name or
directory.

daviesgeekdaviesgeek
22.2k4848 gold badges142142 silver badges188188 bronze badges


4 ANSWERS

.bash_profile is executed for login shells, while .bashrc is executed for
interactive non-login shells.

When you login (type username and password) via console, either sitting at the
machine, or remotely via ssh: .bash_profile is executed to configure your shell
before the initial command prompt.

But, if you’ve already logged into your machine and open a new terminal window
(xterm) then .bashrc is executed before the window command prompt. .bashrc is
also run when you start a new bash instance by typing /bin/bash in a terminal.

On OS X, Terminal by default runs a login shell every time, so this is a little
different to most other systems, but you can configure that in the preferences.

jherran
10.6k99 gold badges4040 silver badges6363 bronze badges
AlexAlex
6,70333 gold badges1717 silver badges3232 bronze badges

X11 will look at your .bashrc while a 'regular' Terminal will look at
.bash_profile

However, if you add the following to your .bash_profile, you can then move
everything into your .bashrc file so as to consolidate everything into one place
instead of two:

jherran
10.6k99 gold badges4040 silver badges6363 bronze badges
LurchLurch

For macOS, the code to put into .bash_profile to consolidate everything into
.bashrc is the following:

This is more specific for Mac terminal user.

frzhenfrzhen


GOOD BASH PROFILE

TLDR; use .bash_profile for your aliases.


MAC BASH PROFILE LOCATION

The way the different initialisation files work together is a bit more
complicated, and there are some important special cases in OSX. Here are the
highlights:

 * Bash, on any platform, executes one of several different files depending on
   how it is invoked. The details are here.
 * OSX's Terminal App does something non-standard: it creates every new tab or
   window as if it were a login shell, which means that .bash_profile is called.
   Thus the TLDR advice above.
 * .bashrc is also an option, but that will be called every time you create a
   subshell (i.e., invoke bash), which can create inefficiency if you update a
   variable within it (e.g., PATH=/bin/foo:$PATH)
 * Other apps that have embedded terminals can choose to follow Terminal App's
   convention or not. Notably, Visual Studio Code, by default, does not.
 * Apps invoked via the GUI are not spawned from a shell. Thus, there are
   several competing mechanisms for setting environment variables for them to
   see, which have changed over the years.
 * Snippets that call .bashrc from .bash_profile are quite common. I don't
   recommend that, but it is a preference.

LeoLeo


YOU MUST LOG IN TO ANSWER THIS QUESTION.


MAC EDIT BASH PROFILE


NOT THE ANSWER YOU'RE LOOKING FOR? BROWSE OTHER QUESTIONS TAGGED
TERMINALCOMMAND-LINEBASH .



⇐ ⇐ Best Journal Apps For Mac & Iphone
⇒ ⇒ Best Ide For Php Mac
Search for:
MOST POPULAR ARTICLES
 * : Best Internet Filters For Mac
 * : Best Audiophile Software For Mac
 * : Best Printers For Mac 2016
 * : Best Free Simulator Games For Mac
 * : Best Beat Making Software For Mac

© 2021 Navigol