Difference between revisions of "ShellEnhancement"

From SME Server
Jump to navigationJump to search
Line 8: Line 8:
 
</pre>
 
</pre>
  
==Expand memory of you .bash_history==
+
==Expand memory of your .bash_history==
 
Expand the memory of your .bash_history to 2000 lines adding this on your .bashrc:
 
Expand the memory of your .bash_history to 2000 lines adding this on your .bashrc:
 
<pre>
 
<pre>
Line 14: Line 14:
 
export HISTSIZE=2000
 
export HISTSIZE=2000
 
</pre>
 
</pre>
 +
 +
==Add Date/time to each line in your .bash_history==
 +
Add Date/time to each line in your history adding this on your .bashrc:
 +
<pre>
 +
export HISTTIMEFORMAT='%F %T '
 +
</pre>
 +
Read 'date' man page to format date/time according to your needs
  
 
== Easy search using arrows ==
 
== Easy search using arrows ==

Revision as of 22:26, 14 September 2009

Sort & Remove Duplicates

This will sort and remove duplicate commands from your .bash_history file in the /root directory, as well as reducing it file size. After you execute the command below, you should edit the file and remove any commands or lines that have errors in them so they aren't executed accidentally.

sort -u /root/.bash_history -o /root/.bash_history

Expand memory of your .bash_history

Expand the memory of your .bash_history to 2000 lines adding this on your .bashrc:

export HISTFILESIZE=2000
export HISTSIZE=2000

Add Date/time to each line in your .bash_history

Add Date/time to each line in your history adding this on your .bashrc:

export HISTTIMEFORMAT='%F %T '

Read 'date' man page to format date/time according to your needs

Easy search using arrows

Create a .inputrc, or edit your /etc/inputrc, with :

"\e[A": history-search-backward
"\e[B": history-search-forward

Next logon you'll be able to search command by start to write them and use up/down arrows.

"\e[1;5A": history-search-backward
"\e[1;5B": history-search-forward

Will allow you to use ctrl+up/down arrows (and your up/down arrows will work as usual).