[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
slackbook:bash [2012/09/08 18:05 (UTC)] – [Terminals] updated section to match original with formatting mfillpotslackbook:bash [2012/09/12 20:39 (UTC)] – [Sources] Fixed syntax for bullet points sycamorex
Line 41: Line 41:
  
  
-<code>+<code bash>
 darkstar:~$ set FOO=bar darkstar:~$ set FOO=bar
 darkstar:~$ echo $FOO darkstar:~$ echo $FOO
Line 57: Line 57:
  
  
-<code>+<code bash>
 darkstar:~$ set PS1='FOO ' darkstar:~$ set PS1='FOO '
 darkstar:~$ export PS1='FOO ' darkstar:~$ export PS1='FOO '
Line 78: Line 78:
  
  
-<code>+<code bash>
 darkstar:~$ ifconfig darkstar:~$ ifconfig
 bash: ifconfig: command not found bash: ifconfig: command not found
Line 91: Line 91:
  
  
-<code>+<code bash>
 darkstar:~$ su - darkstar:~$ su -
 Password:  Password: 
Line 114: Line 114:
  
  
-<code>+<code bash>
 darkstar:~$ touch b ba bab darkstar:~$ touch b ba bab
 darkstar:~$ ls * darkstar:~$ ls *
Line 133: Line 133:
  
  
-<code>+<code bash>
 darkstar:~$ ls a[1-4,9] darkstar:~$ ls a[1-4,9]
 a1 a2 a3 a4 a9 a1 a2 a3 a4 a9
Line 145: Line 145:
  
  
-<code>+<code bash>
 darkstar:~$ ls 1[W-b] darkstar:~$ ls 1[W-b]
 1W 1X 1Y 1Z 1a 1b 1W 1X 1Y 1Z 1a 1b
Line 162: Line 162:
 dealing with long filenames: tab completion.  Tab completion enables dealing with long filenames: tab completion.  Tab completion enables
 you to type just enough of the filename to uniquely identify it, then you to type just enough of the filename to uniquely identify it, then
-by hitting the <key>TAB</key> key, **//bash//** will fill in+by hitting the <key>'TAB'</key> key, **//bash//** will fill in
 the rest for you.  Even if you haven't typed in enough text to uniquely the rest for you.  Even if you haven't typed in enough text to uniquely
 identify a filename, the shell will fill in as much as it can for you. identify a filename, the shell will fill in as much as it can for you.
Line 183: Line 183:
  
  
-<code>+<code bash>
 darkstar:~$ echo foo darkstar:~$ echo foo
 foo foo
Line 203: Line 203:
  
  
-<code>+<code bash>
 darkstar:~$ echo foo darkstar:~$ echo foo
 foo foo
Line 226: Line 226:
  
  
-<code>+<code bash>
 darkstar:~$ rm bar darkstar:~$ rm bar
 rm: cannot remove `bar': No such file or directory rm: cannot remove `bar': No such file or directory
Line 240: Line 240:
  
  
-<code>+<code bash>
 darkstar:~$ fromdos < dosfile  darkstar:~$ fromdos < dosfile 
 </code> </code>
Line 253: Line 253:
  
  
-<code>+<code bash>
 darkstar:~$ ps auxw | grep getty darkstar:~$ ps auxw | grep getty
 root      2632  0.0  0.0   1656   532 tty2     Ss+  Feb21   0:00 /sbin/agetty 38400 tty2 linux root      2632  0.0  0.0   1656   532 tty2     Ss+  Feb21   0:00 /sbin/agetty 38400 tty2 linux
Line 267: Line 267:
 temporarily halt a running process, perform some other task, then temporarily halt a running process, perform some other task, then
 resume it or optionally make it run in the background. Upon pressing resume it or optionally make it run in the background. Upon pressing
-<key>CTRL-Z</key>, **//bash//** will suspend+<key>'CTRL'</key>+<key>'z'</key>, **//bash//** will suspend
 the running process and return you to a prompt. You can return to that the running process and return you to a prompt. You can return to that
 process later.  Additionally, you can suspend multiple processes in process later.  Additionally, you can suspend multiple processes in
Line 274: Line 274:
  
  
-<code>+<code bash>
 darkstar:~$ jobs darkstar:~$ jobs
 [1]-  Stopped                 vi TODO [1]-  Stopped                 vi TODO
Line 288: Line 288:
  
  
-<code>+<code bash>
 darkstar:~$ fg # "vi TODO" darkstar:~$ fg # "vi TODO"
 darkstar:~$ fg 1 # "vi chapter_05.xml" darkstar:~$ fg 1 # "vi chapter_05.xml"
Line 320: Line 320:
 applications. Each of these gettys is available on different tty applications. Each of these gettys is available on different tty
 devices that are accessible seperately by pressing the devices that are accessible seperately by pressing the
-<key>ALT</key> key and one of the function keys from +<key>'ALT'</key> key and one of the function keys from 
-<key>F1</key> through <key>F6</key>. Using these gettys+<key>'F1'</key> through <key>'F6'</key>. Using these gettys
 allows you to login multiple times, perhaps as different users, and run allows you to login multiple times, perhaps as different users, and run
 applications in those users' shells silmutaneously. This is most applications in those users' shells silmutaneously. This is most
Line 342: Line 342:
 ===== Customization ===== ===== Customization =====
  
-By now you should be pretty familiar with bash and you may have even noticed some odd behavior. For example, when you login at the console, you're presented with a prompt that looks a bit like this.+By now you should be pretty familiar with 
 +**//bash//** and you may have even noticed some odd 
 +behavior. For example, when you login at the console, you're presented 
 +with a prompt that looks a bit like this. 
 + 
 + 
 +<code bash> 
 +alan@darkstar:~$ </code> 
  
-<code> 
-alan@darkstar:~$  
-</code> 
 However, sometimes you'll see a much less helpful prompt like this one. However, sometimes you'll see a much less helpful prompt like this one.
  
-<code> 
-bash-3.1$  
-</code> 
  
-The cause here is a special environment variable that controls the bash prompt. Some shells are considered "login" shells and others are "interactive" shells, and both types read different configuration files when started. Login shells read /etc/profile and ~/.bash_profile when executed. Interactive shells read ~/.bashrc instead. This has some advantages for power users, but is a common annoyance for many new users who want the same environment anytime they execute bash and don't care about the difference between login and interactive shells. If this applies to you, simply edit your own ~/.bashrc file and include the following lines. (For more information on the different configuration files used, read the INVOCATION section of the bash man page.)+<code bash> 
 +bash-3.1$ </code> 
 + 
 + 
 +The cause here is a special environment variable that controls the 
 +**//bash//** prompt. Some shells are considered 
 +//"login"// shells and others are //"interactive"// shells, and both types read 
 +different configuration files when started. Login shells read 
 +''/etc/profile'' and 
 +''~/.bash_profile'' when executed. Interactive shells 
 +read ''~/.bashrc'' instead. This has some advantages 
 +for power users, but is a common annoyance for many new users who want 
 +the same environment anytime they execute 
 +**//bash//** and don't care about the difference 
 +between login and interactive shells. If this applies to you, simply 
 +edit your own ~/.bashrc file and include the following lines. 
 +(For more information on 
 +the different configuration files used, read the INVOCATION section of 
 +the **//bash//** man page.) 
 + 
 + 
 +<code bash>
  
-<code> 
 # ~/.bashrc # ~/.bashrc
 . /etc/profile . /etc/profile
Line 361: Line 383:
 </code> </code>
  
-When using the above, all your login and interactive shells will have the same environment settings and behave identically. Now, anytime we wish to customize a shell setting, we only have to edit ~/.bash_profile for user-specific changes and /etc/profile for global settings. Let's start by configuring the prompt. 
  
-bash prompts come in all shapes, colors, and sizes, and every user has their own preferancesPersonallyI prefer short and simple prompts that take up minimum of spacebut I've seen and used mutli-line prompts many timesOne personal friend of mine even included ASCII-art in his bash promptTo change your prompt you need only to change your PS1 variableBy default, Slackware attempts to configure your PS1 variable thusly:+When using the aboveall your login and interactive shells will have 
 +the same environment settings and behave identicallyNowanytime we 
 +wish to customize shell settingwe only have to edit 
 +''~/.bash_profile'' for user-specific changes and 
 +''/etc/profile'' for global settingsLet's start by 
 +configuring the prompt.
  
-<code>+ 
 +**//bash//** prompts come in all shapes, colors, and 
 +sizes, and every user has their own preferances. Personally, I prefer 
 +short and simple prompts that take up a minimum of space, but I've seen 
 +and used mutli-line prompts many times. One personal friend of mine 
 +even included ASCII-art in his bash prompt. To change your prompt you 
 +need only to change your PS1 variable. By default, Slackware attempts 
 +to configure your PS1 variable thusly: 
 + 
 + 
 +<code bash>
 darkstar:~$ echo $PS1 darkstar:~$ echo $PS1
-\u@\h:\w\$  +\u@\h:\w\$ </code>
-</code>+
  
-Yes, this tiny piece of funny-looking figures controls your bash prompt. Basicaly, every character in the PS1 variable is included in the prompt, unless it is a escaped by a \, which tells bash to interpret it. There are many different escape sequences and we can't discuss them all, but I'll explain these. The first "\u" translates to the username of the current user. "\h" is the hostname of the machine the terminal is attached to. "\w" is the current working directory, and "\$" displays either a # or a $ sign, depending on whether or not the current user is root. A complete listing of all prompt escape sequences is listed in the bash man page under the PROMPTING section. 
  
-Since we've gone through all this trouble to discuss the default prompt, I thought I'd take some time to show you a couple example prompts and the PS1 variable values needed to use them.+Yes, this tiny piece of funny-looking figures controls your 
 +**//bash//** prompt. Basicaly, every character in 
 +the PS1 variable is included in the prompt, unless it is a escaped by a 
 +<key>'\'</key>, which tells **//bash//** to 
 +interpret it. There are many different escape sequences and we can'
 +discuss them all, but I'll explain these.  The first //"\u"// translates to 
 +the username of the current user.  //"\h"// is the hostname of the machine 
 +the terminal is attached to. //"\w"// is the current working directory, and 
 +//"\$"// displays either a <key>'#'</key> or a <key>'$'</key> sign, 
 +depending on whether or not the current user is root.  A complete 
 +listing of all prompt escape sequences is listed in the 
 +**//bash//** man page under the PROMPTING section.
  
-<code>+ 
 +Since we've gone through all this trouble to discuss the default 
 +prompt, I thought I'd take some time to show you a couple example 
 +prompts and the PS1 variable values needed to use them. 
 + 
 + 
 +<code bash>
 Wed Jan 14 12:08 AM Wed Jan 14 12:08 AM
 alan@raven:~$ echo $PS1 alan@raven:~$ echo $PS1
Line 383: Line 434:
 </code> </code>
  
-For even more information on configuring your bash prompt, including information on setting up colored prompts, refer to /usr/doc/Linux-HOWTOs/Bash-Prompt-HOWTO. After reading that for a short while, you'll get an idea of just how powerful your bash prompts can be. I once even had a prompt that gave me up to date weather information such as temperature and barometric pressure! 
  
 +For even more information on configuring your bash prompt, including
 +information on setting up colored prompts, refer to
 +''/usr/doc/Linux-HOWTOs/Bash-Prompt-HOWTO''. After
 +reading that for a short while, you'll get an idea of just how powerful
 +your **//bash//** prompts can be. I once even had a
 +prompt that gave me up to date weather information such as temperature
 +and barometric pressure!
 +
 +====== Chapter Navigation ======
 +
 +**Previous Chapter: [[slackbook:shell|Basic Shell Commands]]**
 +
 +**Next Chapter: [[slackbook:process_control|Process Control]]**
 ====== Sources ====== ====== Sources ======
 <!-- If you copy information from another source, then specify that source --> <!-- If you copy information from another source, then specify that source -->
- * Original source: [[http://www.slackbook.org/beta/#ch_bash]] +  * Original source: [[http://www.slackbook.org/beta]] \\
 <!-- Authors are allowed to give credit to themselves! --> <!-- Authors are allowed to give credit to themselves! -->
-<!-- * Originally written by [[wiki:user:xxx | User X]] -->+  * Originally written by Alan Hicks, Chris Lumens, David Cantrell, Logan Johnson
 <!-- * Contrbutions by [[wiki:user:yyy | User Y]] --> <!-- * Contrbutions by [[wiki:user:yyy | User Y]] -->
  
 slackbook:bash ()