Mailinglist Archive: opensuse (3893 mails)
| < Previous | Next > |
Re: [opensuse] Changing users temp folder
- From: Randall R Schulz <rschulz@xxxxxxxxx>
- Date: Tue, 2 Jan 2007 16:20:12 -0800
- Message-id: <200701021620.12455.rschulz@xxxxxxxxx>
On Tuesday 02 January 2007 15:00, Greg Wallace wrote:
> ...
>
> Doesn't ~/.bashrc run every time you open a shell?
The commands contained in ~/.bashrc are executed for every shell invoked
unless the "--norc" option is specified. That's true not only for
interactive shells but also for shells launched to execute scripts,
which is why all my scripts use this shebang line:
!#/bin/bash --norc
If you don't do this, you really don't know what aliases, variables and
shell procedures are defined when your script runs, since the .bashrc
read is that of the invoking user.
> ...
>
> Greg Wallace
Randall Schulz
--
To unsubscribe, e-mail: opensuse+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse+help@xxxxxxxxxxxx
> ...
>
> Doesn't ~/.bashrc run every time you open a shell?
The commands contained in ~/.bashrc are executed for every shell invoked
unless the "--norc" option is specified. That's true not only for
interactive shells but also for shells launched to execute scripts,
which is why all my scripts use this shebang line:
!#/bin/bash --norc
If you don't do this, you really don't know what aliases, variables and
shell procedures are defined when your script runs, since the .bashrc
read is that of the invoking user.
> ...
>
> Greg Wallace
Randall Schulz
--
To unsubscribe, e-mail: opensuse+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse+help@xxxxxxxxxxxx
| < Previous | Next > |