linuxnewbie.org.gif
Tuesday, 12-Dec-2000 10:38:02 EST
Newbized Help Files articles discussion board bookshelf sensei's log advertising info
CONFIGURING THE BASH SHELL: VERSION 1.0

Bash is an acronym for Bourne Again SHell. It is compatible with the original
Bourne shell and boasts some enhancments, like command line editing [TRANSLATION: The Bash shell can run program written for the Bourne shell, plus it offers so much more than the Bourne shell]. It is also the default Linux shell and
is the most widely used shell in Linux. For those who do not know, a shell
is a program that acts as an intermediary between the user and the kernel
[TRANSLATION: A shell is a program that takes commands from the
user and passes them into the kernel for processing]. Like most of the
software that comes with Linux, bash is highly configurable.

ASSUMPTIONS
This article makes a few assumptions about you; the reader:

  • You know basic Linux commands, eg: ls, cd, mv, etc...
  • You know how to use a text editor, eg: vi, emacs, pico, etc...
  • You know how to read path names, eg: /etc/profile
  • You know a little bash shell programming.
If you are not yet familiar with the above, please read the approrpriate Newbieized
Help File (NHF). While this article can be read without meeting all the said
assumptions, it would benefit you more if you did.

THE CONFIGURATION FILES
bash has five common configuration files. They are not always found on every
Linux distribution, but they are not hard to create. These files are as follows:

  • /etc/profile
  • /etc/bashrc
  • ~/.bash_profile
  • ~/.bashrc
  • ~/.bash_logout
The files are categorized into two groups: global and local. Global files are
those that contain configurations that affect all users who use bash. Global
files are usually located in /etc. Local files contain personal configurations
for the user, and affect only the specific user who is using them. They are
normally hidden files [TRANSLATION: They start with a '.' like ~/.bashrc]
found in the user's home directory. If you do not have these files, do not worry.
After reading this NHF, you should be able to create your own. For now, an
explanation on each configuration file.

/etc/profile
/etc/profile is the global system configuration for bash which controls the
environmental variables and programs that are to be run when bash is executed
[TRANSLATION: /etc/profile contains variables and programs that are
executed for every user who runs bash]. If you are an MS-DOS user, /etc/profile
is equivalent to autoexec.bat.

/etc/bashrc
/etc/bashrc is the global system configuration for bash which controls the aliases
and functions to be run when bash is executed [TRANSLATION: /etc/bashrc
contains aliases ("shortcuts" to long commands) as well as pieces of code that are
executed when they are called for]. /etc/bashrc is sometimes omitted, and its
contents placed into /etc/profile.

~/.bash_profile
~/.bash_profile is the local system configuration for bash which controls
the environment variables and programs that are run when bash is executed.
These environment variables and functions are specific only to the user, and they
do not affect anyone else. This file is executed right after the global configuration
file /etc/profile is executed [TRANSLATION: Unlike /etc/profile which
affects all users, ~/.bash_profile affects only the user running bash].

~/.bashrc
~/.bashrc is the local system configuration for bash which controls the aliases
and functions to be run when bash is executed. These aliases and functions are
specific only to the user, and they do not affect anyone else. This file is executed
right after the global configuration file /etc/bashrc is executed [TRANSLATION:
Unlike /etc/bashrc which affects all users, ~/.bashrc affects only the user
running bash].

~/.bash_logout
~/.bash_logout is the local system configuration for bash which runs programs
right before the user is logged out. These programs are specific only to the user running
them, and they do not affect anyone else. EXPLAINING

VARIABLES

A variable is a named storage location in the computer's memory. When you define a
variable, this location holds the variable's defined value [TRANSLATION: Think
of a variable as a box called Box A. Whatever you put in Box A, say a ball, is the value
of Box A]. There are two types of variables in bash: environmental variables and
local variables. Environmental variables are those that are created by the system,
and are normally defined in /etc/profile. These variables (which will be explained
later) include SHELL, PS1, PATH, etc... Local variables are those that are defined by
the user, and are usually placed in the local configuration files like ~/.bashrc. These
variables are local only to the user when bash is executed [TRANSLATION:
Environment variables affect everyone who runs bash, while local variables affect
only those who specify them in their local configuration files].

Defining variables
A variable definition consists of three parts. A variable_name, the assignment
operator: "=" and a variable_value. The variable_name is the name of the
variable, and the variable_value is the value to be assigned to the name. Eg:

variable_name=variable_value
Using the box analogy, variable_name is Box A, and variable_value is the ball.
Hence, variable_name's value is a ball. Notice that there are no spaces beside the
assignment operator. When a variable is defined, it has to be made available to
programs the user uses. This is done by exporting the variable with the export command:


export variable_name
Accessing variables
Variables can be accessed by prefixing the variable_name with a dollar sign: "$".
So for example, to view your environment SHELL variable, type the following command:


xconsole$ echo $SHELL
/bin/bash
This means that the variable variable_name is expanded to variable_value when
you prefix it with a "$" symbol. Understanding how to manipulate variables is essential
when configuring bash, as its configuration files are all in bash shell syntax. Now
that the worst is over, we can begin with the actual configuration.

COMMENTING AND UNCOMMENTING
If while editing your configuration files, you find a line of code that you are unsure of,
you can comment it out instead of deleting it. Commenting is the process of "removing"
a particular line by placing special characters in front of it, so that you do not really
delete it from the file. A commented line will not be read by the configuration file, so
it is just as good as deleting it. Here is an example:


FOOBAR=/bin/foobar
To comment this line out so that it will not be read by the configuration file, add the
hash symbol: "#" in front of it:


# FOOBAR=/bin/foobar
If you decide later that you want this line back, just remove the hash symbol. Commenting
is also good for small notes when editing:


# not sure what this variable does, so I decided to 
comment it out # 1 May 1999 # FOOBAR=/bin/foobar
It is a good idea to add useful notes like these so that you will know what you did when
you need to reconfigure your files much later on.

PATH

The first thing to configure is the PATH variable. PATH defines the directories that you have
direct access to. For example; if you have a program called foo in /bin and you want to
run it. If /bin is in your PATH, then all you have to do is to type foo anywhere and the
program would run. If /bin was not in your PATH, you would have to type the full path
name to program foo in order to run it, that is: /bin/foo. This variable is located in
/etc/profile
, and it has an unusual syntax. Each directory on the right hand side of
the equation has to be seperated by a colon: ":". Eg:


PATH=/bin:/usr/bin:/usr/local/bin
export PATH
In the above example, three directories, /bin, /usr/bin, and /usr/local/bin are
seperarated by a colon. When creating a new PATH variable, it is important to add the
current PATH variable to the new PATH variable. Eg:


PATH=$PATH:/usr/games
export PATH
This appends /usr/games into the already existing PATH variable, which is $PATH. Recall that
a variable prefixed with a dollar sign is expanded to its original value. In this case, $PATH is
expanded to /bin:/usr/bin:/usr/local/bin. Because it is added to the new PATH variable,
the new PATH variable can now be expanded to /bin:/usr/bin:/usr/local/bin:/usr/games.
If you had omitted $PATH in the definition, then PATH would be expaned to /usr/games. If
you are not root, you may add to and modify your current existing PATH in ~/.bash_profile.

PROMPTS
The PS1 variable is your primary prompt. Depending upon how your system is configured,
the PS1 variable will vary. PS1 is normally defined in /etc/profile, but can be
overridden by defining it again in ~/.bash_profile [TRANSLATION: Because
/etc/profile
is only writeable by root, you can only override the environmental
variables there by redefining them in your ~/.bash_profile]. bash recognizes
special characters prefixed with a backslash for the PS1 variable. These characters are:


\t	the current time in HH:MM:SS format
\d	the date in "Weekday Month Date" forma
t (eg, "Tue May 26") \n newline \s the name of the shell \w the current working directory \W the basename of the current working directory \u the username of the current user \h the hostname \# the command number of this command \! the history number of this command \$ if the effective UID is 0, a #, otherwise a $
These are the characters that allow you to change your prompt. If your PS1 variable
is set as PS1="[\u@\h \W]\$", then your prompt will look like this:


[xconsole@localhost /etc]$
If you were to change it to the following: PS1="[\t \s]\$ ", you would get:


[12:18:24 bash]$
In addition to these special backslash characters, you can use commands. For
instance, to have your prompt run as a fortune, you can do this:


PS1="`fortune` \$ "
Notice that you have to use "`" instead of "'". This changes PS1 to the following:


He is no laywer who cannot take two sides. $
As you can see, bash is very lenient about the way you configure it, so knock
yourself out. The PS2 variable is your secondary prompt and is used when you
have typed an incomplete command, or when you have typed a backlslash at the
end of a command [TRANSLATION: A backslash at the end of a command
in bash tells it that you are not done with the command. This is when it will
present you with the PS2 variable. bash is also smart enough to know when the
command you are typing is incomplete, and in such a case, it will present you with
the PS2 variable]. When you are presented with the PS2 variable, bash expects
you to finish the command before it will attempt to run it. To see your current PS2
variable, run the following command:


xconsole$ if [ -f /etc/profile ]; then
When you press ENTER, you will see that you have a new prompt:

xconsole$ if [ -f /etc/profile ]; then
>

This prompt is the PS2 variable. You can also view it with echo $PS2. In the abov
e example with the if statement, we did not add a backslash character right at the
end of the command, but bash knew the command was incomplete. As with PS1,
it is defined in /etc/profile, and can be overidden and redifined in ~/.bash_profile.
It recognizes the special backslashed characters, as well as other programs like
fortune
[TRANSLATION: Whatever applies to PS1, applies to PS2 as well].

HISTORY
bash keeps a record of all the commands you type on the console. Depending
on how it is configured, it may choose to save this file to a file called ~/.bash_history.
bash
also keeps track of the commands you run, so that you can view them when
you press the up arrow, or when you type history. If you are concerned about
your privacy, all this can be configured by playing with the folowing variables:
  • HISTSIZE
  • HISTFILE
  • HISTFILESIZE
These files are normally defined in /etc/profile, but can be overridden by
including them in ~/.bash_profile.

HISTSIZE

HISIZE controls the number of commands to remember in the history command.
The default value is 500 [TRANSLATION: HISTSIZE is what keeps track of
the number of commands to be kept in history. That is, if it is specified with the
value 5, then history will only remember the last 5 commands run]. Normally
I assign it the value 5.

HISTFILE
HISTFILE defines the file in which all commands will be logged to. Normally the
value for this variable is set to ~/.bash_history. This means that whatever you
type in bash will be stored into the value of HISTFILE. I usually have no need for
this file, so I either leave it undefined, or pipe the output to /dev/null.

HISTFILESIZE
HISTFILESIZE defines the maximum number of commands ~/.bash_history,
or whatever value you assign to HISTFILE, can hold. If it is defined as 2, then only
the last 2 commands run will be logged to ~/.bash_history. The value of
HISTFILE
can grow pretty big if left unattended. This variable will ensure that it
is kept to a specific size. The default value for it is 500. If you decide to have your
commands logged to HISTFILE, you may want to specify a smaller value than 500.

MAIL CHECKING
bash allows you to configure how you want to check for emails. bash has the
following variables that control email configuration:
  • MAIL
  • MAILCHECK
  • MAILPATH
  • MAIL_WARNING
These variables are normally defined in /etc/profile, but may be overridden in ~/.bash_profile

MAIL
When email is delivered to a user, the contents of the email are stored in a file. This
file is defined by MAIL. Its value is /var/spool/mail/$USER [TRANSLATION:
If your user name is xconsole, then your email is kept in /var/spool/mail/xconsole]
by default if MAIL is not set to another file. This is only if the variable MAILPATH is not
defined. Changing this value will change the file in which your email is stored in.

MAILCHECK
This variable defines how often bash will check for incoming email. The default value is 60.
This means that bash will check to see if you have any new emails every minute.

MAILPATH This variable defines the paths to check for emails. Normally this value is set
to /var/spool/maile. Each path is to be seperated by a colon: ":". You can also
modify this variable to print out a special message when you receive any new emails.
For instance, if you defined this variable as:

MAILPATH='/var/spool/mail/xconsole "Yeah! Incoming message!"'

When you receive an email, this is what happens:

Yeah! Incoming message!

This message can be tailored in anyway you like of course. MAILPATH will begin by
checking the path to /var/spool/mail/xconsole and then informing you of the
received email.

MAIL_WARNING
If MAIL_WARNING is set, bash will inform you if you attempt to read an email that you
have just read with the following message:

The mail in mailfile has been read

mailfile is the variable MAIL, which is the file in which a user's email is stored.
Setting this variable is a good way of knowing if you are reading the same email twice,
but quite useless if you are using an email client that informs you automaticall if you have
already read/replied to an email; like pine.

RECEIVING NOTIFICATION WHEN A JOB FINISHES
Depending upon how bash is configured, you may or may not receive a message that
a job you have run in the background is done [TRANSLATION: Programs run in the
background are called jobs. Running a program in the background is done simply by
adding an amperstand: "&" right at the end of the command, eg updatedb &]. When
the job ends, you may have to press ENTER before you receive a message like:


[1]1+ Done updatedb
If you want this message to pop up automatically without you having to hit the
ENTER key, then you have to set the notify variable in your /etc/profile or
your ~/.bash_profile. This can be done by adding the following entry into your
/etc/profile
or ~/.bash_profile:

set -o notify

The variable notfiy will notify you the moment a job in the background is finished.
To unset this variable, the command is unset +o notify.

TIMEOUT
When opening up a new bash session, you can specify how long to wait before the
shell automatically terminates with the TMOUT variable. The value of this variable is to
be set in the number of seconds to wait for user input before the shell self terminates.
If you add this to your /etc/profile or to your /etc/.bash_profile, as so:

TMOUT=60

bash will terminate the session after one minute. Here is what happens after one minute
of no user input:


xconsole$ timed out waiting for input: auto-logout

Linux 2.2.7

login:

As you can see, the user is immediately logged out and a new login prompt is issue.
This can be a good security practice if you do not use password protected screen savers.

OVERWRITING PRECAUTIONS
Often, one has to work with redirection in bash [TRANSLATION: Redirection is
running a program, and then having its output redirected to another file, or program,
instead of to the monitor]. An example of redirection is:


xconsole$ echo "Hello World" > ~/.test_file
xconsole$ echo "tcsh is better" >> ~/.test_file

The ">" operator is the redirect operator, and the ">>" operator is the append operator.
The first command saves the string Hello World into a file called ~/.test_file.
Hello World
will not be echoed to the screen at all! It must be read from the file
~/.test_file
. The second command appends to the file ~/.test_file. This means
that when ~/.test_file is read, this is what we get:


xconsole$ cat ~/.test_file
Hello World
tcsh is better

Now imagine that this is some very important file. While typing away on the keyboard,
you accidentally type the following command:


xconsole$ echo "AUGH" > ~/.test_file

What happens here is that ~/.test_file is completely overwritten. Anything important, has
been deleted and replaced:


xconsole$ cat ~/.test_file
AUGH

To prevent against this sort of accident, you can set the noclobber variable. This is done
with the command set -o noclobber. When set, here is what happens when we try
to overwrite a file:


xconsole$ echo "Testing..." > ~/.test_file
bash: ~/.test_file: Cannot clobber existing file

As you can see, bash prevents you from overwriting the file. If you want to overwrite it,
you can do a force by using the ">|" operator:


xconsole$ echo "Try" > ~/.test_file
bash: ~/.test_file: Cannot clobber existing file
xconsole$ echo "Try again" >| ~/.test_file
xconsole$ cat ~/.test_file
Try again

Here we see that when we issue the second command, bash no longer complains and
performs the command. I suggest you set this variable on at all times. Have it in your
~/.bash_profile or /etc/profile. It is really easy to type ">" by accident when
you meant to type ">>". It is much harder to type ">|". On the other hand, this could
cause problems with shell programs that need to execute the ">" operator [TRANSLATION:
If the program you are running uses the ">" operator, and you have the noclobber variable
set, then you will get an error message when executing the shell program]. So it is really up
to you if you want to set it or not. To unset this variable, the command is unset +o noclobber

ALIASES
Aliases are what you can call, "shortcut commands". If you want something done quick,
you can do it with aliases. One example an alias can do is to allow you to type ls -aF
--color
just by typing ls, or anything else you like. An alias is normally defined in
/etc/bashrc
or ~/.bashrc. Aliases look like this:


alias ls='ls -aF --color'
alias haha='ls -aF --color'
alias sl='ls -aF --color'

 

X_console shellscope@yahoo.com

We would like to hear your feedback.
[-NHF Control Panel-]
The Linux Channel at internet.com
Linux Planet
Linux Today
Linux Central
Linuxnewbie.org
PHPBuilder
Just Linux
Linux Programming
Linux Start
BSD Today
Apache Today
Enterprise Linux Today
BSD Central
All Linux Devices
SITE DESCRIPTIONS
[-What's New-]
Order a Linuxnewbie T-Shirt
Easy Webcam NHF
Directory Navigation NHF
Installing Snort 1.6.3 on SuSE 6.x-7.x
Customizing vim
The SysVinit NHF
Installing ALSA for the VT82C686 integrated sound
USB Creative Video Blaster II for Linux
Configuring the Intellimouse Explorer in XFree86 V4+
The beginnings of a distro NHF
Getting Past Carnivore?
Getting and Installing PGP
Getting your ATI Rage 128 Working
How to create a multiple partition system
Using Fdisk
Introduction to Programming in C/C++ with Vim
Adding a Hard drive in Linux -- In five steps
Installing ALSA for the Yamaha DS-XG Sound Card
Getting your Diamond Rio Mp3 Player to work with Linux
Bash Programming Cheat Sheet
Installing NVIDIA Drivers for Mandrake
Setting up Portsentry
Hard Drive Speed Tweak for Linux
Sensei's Log
Chat room
Join: Linuxnewbie.org SETI Black Belts!
Send in your news
Click the image to add Linuxnewbie.org to your MyNetscape Page
[-LNO Newsletter-]

[-Archive-]
The beginnings of a distro NHF
Connecting to the Internet using KPPP
Getting your SBLive to work
Unreal Tournament NHF
LWE Day 2 Pictures
LWE Day 1 Pictures
The LNO FAQ!
WoW (Words of Wisdom)
Other sites news
What is Linux?
What is Linux? part deux (ups & downs)
Search newsgroups
The List
ALS Report
Feedback Form
jobs.linuxtoday.com.gif
Match: Format: Sort by:
Search:
Copyright © 1999 All Rights Reserved
[-Quick Links-]

Copyright 2000 internet.com Corp. All Rights Reserved. Legal Notices Privacy Policy

internet.com.gif