Correct spelling.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Wed, 13 Jan 2010 21:52:07 +0200
changeset 277 5c7e19c15332
parent 276 ed6b5ae36a49
child 278 a58e223b692f
Correct spelling.
bash.rst
--- a/bash.rst	Wed Jan 13 21:47:02 2010 +0200
+++ b/bash.rst	Wed Jan 13 21:52:07 2010 +0200
@@ -17,9 +17,9 @@
 
 * Command history.
 
-Bash allow accessing to command that you type previously. There are exist
-several options to control command history behavior. Set corresponding
-variables in your ~/.bashrc file (which is read by interactive shell):
+Bash allow accessing to command that you type previously. There are several
+options to control command history behavior. Set corresponding variables in
+your ~/.bashrc file (which is read by interactive shell):
 
   #   ignorespace do not save lines that start with space
   #   erasedups all previous lines matching the current line to be removed from
@@ -27,7 +27,7 @@
   export HISTCONTROL=igrorespace:erasedups
   export HISTIGNORE=" ?cd *":"e *":"sudo mv *":"sudo rm *":"sudo cp *":"sudo mkdir *":"sudo chmod *":"sudo chown *":ls:pwd:"vlc*"
 
-There are another options, with default values (which satisfy my neediness, so
+There are another options, with default values (which satisfy my needs, so
 I don't put they to ~/.bashrc):
 
   export HISTFILE=~/.bash_history  # where is command history stored