author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Sun, 15 Jul 2012 14:50:25 +0300 | |
changeset 1345 | a1dffeaaf6e4 |
parent 1334 | 9bf0d5a1f0cf |
child 1346 | a2fbf50a43f4 |
permissions | -rw-r--r-- |
1069 | 1 |
.. -*- coding: utf-8; -*- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1069
diff
changeset
|
2 |
.. include:: HEADER.rst |
1069 | 3 |
|
4 |
======= |
|
5 |
Bash. |
|
6 |
======= |
|
7 |
||
8 |
How override PS1, PS2? |
|
9 |
====================== |
|
10 |
||
11 |
When loading bash read ~/.bash_profile and ~/.bashrc. |
|
12 |
||
13 |
Put at end of these files:: |
|
14 |
||
15 |
PS1='\u@\H$ ' |
|
16 |
||
17 |
When xterm start bash - it start as non-login. So ~/.bash_profile and ~/.bashrc |
|
18 |
didn't read. To workaround this use:: |
|
19 |
||
20 |
$ xterm -e bash -i -c "mc -x" |
|
21 |
||
22 |
That make bash interactive and init file was readed. |
|
23 |
||
24 |
Command history. |
|
25 |
================ |
|
26 |
||
27 |
Bash allow accessing to command that you type previously. There are several |
|
28 |
options to control command history behavior. Set corresponding variables in |
|
29 |
your ~/.bashrc file (which is read by interactive shell):: |
|
30 |
||
31 |
# ignorespace do not save lines that start with space |
|
32 |
# erasedups all previous lines matching the current line to be removed from |
|
33 |
# the history list before that line is saved |
|
34 |
export HISTCONTROL=igrorespace:erasedups |
|
35 |
export HISTIGNORE=" ?cd *":"e *":"sudo mv *":"sudo rm *":"sudo cp *":"sudo mkdir *":"sudo chmod *":"sudo chown *":ls:pwd:"vlc*" |
|
36 |
||
37 |
There are another options, with default values (which satisfy my needs, so |
|
38 |
I don't put they to ~/.bashrc):: |
|
39 |
||
40 |
export HISTFILE=~/.bash_history # where is command history stored |
|
41 |
export HISTFILESIZE=500 # how many lines been in $HISTFILE |
|
42 |
export HISTSIZE=500 # how many lines been stored in bash process |
|
43 |
||
44 |
mc (GNU Midnight Commander). |
|
45 |
---------------------------- |
|
46 |
||
47 |
You can also set special history rules for mc subshell in ~/.mc/bashrc file. |
|
48 |
||
49 |
Bash history. |
|
50 |
============= |
|
51 |
||
52 |
http://wiki.bash-hackers.org/scripting/bashchanges |
|
53 |
This article is an incomplete overview of changes to Bash over |
|
54 |
the time. |
|
55 |
||
56 |