# HG changeset patch # User Oleksandr Gavenko # Date 1263412327 -7200 # Node ID 5c7e19c1533258cb92acd97f4d3e91256a676da8 # Parent ed6b5ae36a490d5696aae4ecc9f8324d6f0a0542 Correct spelling. diff -r ed6b5ae36a49 -r 5c7e19c15332 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