15 Examples To Master Linux Command Line History

by Ramesh Natarajan on August 11, 2008

Bash Command Line ImageWhen you are using Linux command line frequently, using the history effectively can be a major productivity boost. In fact, once you have mastered the 15 examples that I’ve provided here, you’ll find using command line more enjoyable and fun.

1. Display timestamp using HISTTIMEFORMAT

Typically when you type history from command line, it displays the command# and the command. For auditing purpose, it may be beneficial to display the timepstamp along with the command as shown below.

# export HISTTIMEFORMAT='%F %T '
# history | more
1  2008-08-05 19:02:39 service network restart
2  2008-08-05 19:02:39 exit
3  2008-08-05 19:02:39 id
4  2008-08-05 19:02:39 cat /etc/redhat-release

2. Search the history using Control+R

I strongly believe, this may be your most frequently used feature of history. When you’ve already executed a very long command, you can simply search history using a keyword and re-execute the same command without having to type it fully. Press Control+R and type the keyword. In the following example, I searched for red, which displayed the previous command “cat /etc/redhat-release” in the history that contained the word red.

# [Press Ctrl+R from the command prompt,
which will display the reverse-i-search prompt]
(reverse-i-search)`red': cat /etc/redhat-release
[Note: Press enter when you see your command,
which will execute the command from the history]
# cat /etc/redhat-release
Fedora release 9 (Sulphur)

Sometimes you want to edit a command from history before executing it. For e.g. you can search for httpd, which will display service httpd stop from the command history, select this command and change the stop to start and re-execute it again as shown below.

# [Press Ctrl+R from the command prompt,
which will display the reverse-i-search prompt]
(reverse-i-search)`httpd': service httpd stop
[Note: Press either left arrow or right arrow key when you see your
command, which will display the command for you to edit, before executing it]
# service httpd start

3. Repeat previous command quickly using 4 different methods

Sometime you may end up repeating the previous commands for various reasons. Following are the 4 different ways to repeat the last executed command.

  1. Use the up arrow to view the previous command and press enter to execute it.
  2. Type !! and press enter from the command line
  3. Type !-1 and press enter from the command line.
  4. Press Control+P will display the previous command, press enter to execute it

4. Execute a specific command from history

In the following example, If you want to repeat the command #4, you can do !4 as shown below.

# history | more
1  service network restart
2  exit
3  id
4  cat /etc/redhat-release

# !4
cat /etc/redhat-release
Fedora release 9 (Sulphur)

5. Execute previous command that starts with a specific word

Type ! followed by the starting few letters of the command that you would like to re-execute. In the following example, typing !ps and enter, executed the previous command starting with ps, which is ‘ps aux | grep yp’.

# !ps
ps aux | grep yp
root     16947  0.0  0.1  36516  1264 ?        Sl   13:10   0:00 ypbind
root     17503  0.0  0.0   4124   740 pts/0    S+   19:19   0:00 grep yp

6. Control the total number of lines in the history using HISTSIZE

Append the following two lines to the .bash_profile and relogin to the bash shell again to see the change. In this example, only 450 command will be stored in the bash history.

# vi ~/.bash_profile
HISTSIZE=450
HISTFILESIZE=450

7. Change the history file name using HISTFILE

By default, history is stored in ~/.bash_history file. Add the following line to the .bash_profile and relogin to the bash shell, to store the history command in .commandline_warrior file instead of .bash_history file. I’m yet to figure out a practical use for this. I can see this getting used when you want to track commands executed from different terminals using different history file name.

# vi ~/.bash_profile
HISTFILE=/root/.commandline_warrior

If you have a good reason to change the name of the history file, please share it with me, as I’m interested in finding out how you are using this feature.

8. Eliminate the continuous repeated entry from history using HISTCONTROL

In the following example pwd was typed three times, when you do history, you can see all the 3 continuous occurrences of it. To eliminate duplicates, set HISTCONTROL to ignoredups as shown below.

# pwd
# pwd
# pwd
# history | tail -4
44  pwd
45  pwd
46  pwd [Note that there are three pwd commands in history, after
executing pwd 3 times as shown above]
47  history | tail -4

# export HISTCONTROL=ignoredups
# pwd
# pwd
# pwd
# history | tail -3
56  export HISTCONTROL=ignoredups
57  pwd [Note that there is only one pwd command in the history, even after
executing pwd 3 times as shown above]
58  history | tail -4

9. Erase duplicates across the whole history using HISTCONTROL

The ignoredups shown above removes duplicates only if they are consecutive commands. To eliminate duplicates across the whole history, set the HISTCONTROL to erasedups as shown below.

# export HISTCONTROL=erasedups
# pwd
# service httpd stop
# history | tail -3
38  pwd
39  service httpd stop
40  history | tail -3

# ls -ltr
# service httpd stop
# history | tail -6
35  export HISTCONTROL=erasedups
36  pwd
37  history | tail -3
38  ls -ltr
39  service httpd stop
[Note that the previous service httpd stop after pwd got erased]
40  history | tail -6

10. Force history not to remember a particular command using HISTCONTROL

When you execute a command, you can instruct history to ignore the command by setting HISTCONTROL to ignorespace AND typing a space in front of the command as shown below. I can see lot of junior sysadmins getting excited about this, as they can hide a command from the history. It is good to understand how ignorespace works. But, as a best practice, don’t hide purposefully anything from history.

# export HISTCONTROL=ignorespace
# ls -ltr
# pwd
#  service httpd stop [Note that there is a space at the beginning of service,
to ignore this command from history]
# history | tail -3
67  ls -ltr
68  pwd
69  history | tail -3

11. Clear all the previous history using option -c

Sometime you may want to clear all the previous history, but want to keep the history moving forward.

# history -c

12. Subtitute words from history commands

When you are searching through history, you may want to execute a different command but use the same parameter from the command that you’ve just searched.

In the example below, the !!:$ next to the vi command gets the argument from the previous command to the current command.

# ls anaconda-ks.cfg
anaconda-ks.cfg
# vi !!:$
vi anaconda-ks.cfg

In the example below, the !^ next to the vi command gets the first argument from the previous command (i.e cp command) to the current command (i.e vi command).

# cp anaconda-ks.cfg anaconda-ks.cfg.bak
anaconda-ks.cfg
# vi  !^
vi anaconda-ks.cfg

13. Substitute a specific argument for a specific command.

In the example below, !cp:2 searches for the previous command in history that starts with cp and takes the second argument of cp and substitutes it for the ls -l command as shown below.

# cp ~/longname.txt /really/a/very/long/path/long-filename.txt
# ls -l !cp:2
ls -l /really/a/very/long/path/long-filename.txt

In the example below, !cp:$ searches for the previous command in history that starts with cp and takes the last argument (in this case, which is also the second argument as shown above) of cp and substitutes it for the ls -l command as shown below.

# ls -l !cp:$
ls -l /really/a/very/long/path/long-filename.txt

14. Disable the usage of history using HISTSIZE

If you want to disable history all together and don’t want bash shell to remember the commands you’ve typed, set the HISTSIZE to 0 as shown below.

# export HISTSIZE=0
# history
# [Note that history did not display anything]

15. Ignore specific commands from the history using HISTIGNORE

Sometimes you may not want to clutter your history with basic commands such as pwd and ls. Use HISTIGNORE to specify all the commands that you want to ignore from the history. Please note that adding ls to the HISTIGNORE ignores only ls and not ls -l. So, you have to provide the exact command that you would like to ignore from the history.

# export HISTIGNORE="pwd:ls:ls -ltr:"
# pwd
# ls
# ls -ltr
# service httpd stop

# history | tail -3
79  export HISTIGNORE="pwd:ls:ls -ltr:"
80  service httpd stop
81  history
[Note that history did not record pwd, ls and ls -ltr]

Recommended Reading

Bash 101 Hacks, by Ramesh Natarajan. I spend most of my time on Linux environment. So, naturally I’m a huge fan of Bash command line and shell scripting. 15 years back, when I was working on different flavors of *nix, I used to write lot of code on C shell and Korn shell. Later years, when I started working on Linux as system administrator, I pretty much automated every possible task using Bash shell scripting. Based on my Bash experience, I’ve written Bash 101 Hacks eBook that contains 101 practical examples on both Bash command line and shell scripting. If you’ve been thinking about mastering Bash, do yourself a favor and read this book, which will help you take control of your Bash command line and shell scripting.

Awesome Linux Articles

Following are few awesome 15 examples articles that you might find helpful.


Share

If you enjoyed this article, you might also like..

  1. 50 Linux Sysadmin Tutorials
  2. 50 Most Frequently Used Linux Commands (With Examples)
  3. Top 25 Best Linux Performance Monitoring and Debugging Tools
  4. Mommy, I found it! – 15 Practical Linux Find Command Examples
  5. Linux 101 Hacks 2nd Edition eBook Linux 101 Hacks Book

Bash 101 Hacks Book Sed and Awk 101 Hacks Book Nagios Core 3 Book Vim 101 Hacks Book

{ 74 comments… read them below or add one }

1 digifuzz August 11, 2008 at 8:05 am

hey, thanks. i actually learned a few things I didn’t know I could do before.

2 Webfreakz August 11, 2008 at 11:04 am

Whoaah! Very useful! Thanks =)

3 Keith Dsouza August 11, 2008 at 9:14 pm

Cool tricks, will come definitely come in useful to me, bookmarked for reference.

4 AurGlass August 12, 2008 at 3:36 pm

An observation:

It’s not immediately clear from the title and introduction that this article applies to the bash shell. I realize that bash is the default shell and so practically synonymous with “the Linux command line”, but there are other shells that a user could end up in, particularly if using a minimal rescue environment. It might be helpful to explicitly mention bash up front so people don’t get confused if these tips don’t work properly. Or perhaps show some of the differences for common shells if there are any for a given example.
Maybe even explaining briefly the difference between the ‘command line’ and a shell so people can learn what’s really going on.

Great article though.

5 Ramesh August 12, 2008 at 5:49 pm

@AurGlass,

Thanks for the feedback. Like you’ve mentioned, I left it out because the default shell in Linux is bash. You brought-up a very valid point and I’ll keep that in mind for the future articles.

6 frankb August 12, 2008 at 6:51 pm

The best reason I ever found to change the history file name using HISTFILE was described here. whereby each administrator of a box gets his own superuser history. Hope that’s what you were looking for.

7 miker August 12, 2008 at 9:17 pm

great article, very handy.

my new favourite feature of bash is using . to put the last argument of the previous command into your new command..something like this:

mkdir some_dir_name
cd .

some_dir_name will appear on your cd line.

8 ta August 12, 2008 at 10:41 pm

Use histfile when you automount a common home directory and you want separate history files for each host that you log into.

export HISTFILE=~.bash_history.d/$HOSTNAME

9 pwc101 August 13, 2008 at 12:24 am

I find the !$ syntax for the last argument of the previous command quicker to type than !!:$ mentioned in 12. Likewise using !:1, !:2 for the previous arguments (starting with !:0 as the first).

10 Martin August 13, 2008 at 2:39 am

very useful article, thank you very much

11 Gordon Schulz August 13, 2008 at 2:44 am

Great Article, thank you. Lots of stuff I didn’t know before, very helpful!

12 miker August 13, 2008 at 8:32 am

heh..my esc key was eaten in my above comment. that should read esc .

not just .

13 Ramesh August 13, 2008 at 8:54 am

@frankb, @ta,

Thanks for sharing the reasons to use HISTFILE with examples.

@miker,

“esc .” is definitely a great use to substitute the argument from the previous command to the current command. Thanks for the tip.

@pwc101,

I agree, the argument number is probably easier to use. Thanks for the feedback.

14 afox August 13, 2008 at 5:00 pm

I’m a huge fan of timestamped history. Comes in handy when you’re trying to prove your client bricked his Linux server. :)

15 Ajith Edassery August 14, 2008 at 2:51 am

Great tips Ramesh. I didn’t find any excuse for not digging it :)

Cheers,
Ajith

16 dethmetaljeff August 15, 2008 at 5:36 pm

you can also use !$ instead of !!:$ to retreive the last argument from the last command

mkdir -p really/deep/directory/tree
cd !$

will get you into really/deep/directory/tree

17 Bash August 15, 2008 at 8:42 pm

For No 12, Alt+. (Alt+ dot ) is much faster.

18 Zaheer M K August 16, 2008 at 7:45 am

Hello Ramesh,

Excellent post!

I never knew about all this before.

Thank you so much for enlightening us.

Do keep writing.

Zaheer.

19 anon August 23, 2008 at 11:11 am

#12 Can be shortened to !$ which is a bit faster.

20 jeff September 3, 2008 at 9:10 pm

Ctrl-R. New favorite! Thanks. -j

21 cholan dhamodaran September 10, 2008 at 6:26 am

very good…thanks a lot

22 Ewoud Van Craeynest September 11, 2008 at 5:02 am

Very informative post!
Thanks

23 Ramesh September 13, 2008 at 12:47 pm

@dethmetaljeff, bash, miker, anon,

Thanks for pointing out the alternative for example#12. i.e instead of !!:$, following can also be used to substitute the previous argument.

1. vi !!:$
2. vi !$
3. vi Alt-key + .
4. vi Esc-key + .

24 Jean-Luc Lacroix September 30, 2008 at 1:11 am

The most comprehensive tutorial I have found on the history command I have found so far.

Nice work! Thank you.

25 Roshan Bhattarai October 2, 2008 at 10:14 am

wow……..great list dude……..thanks for sharing ……..

26 Christian October 27, 2008 at 2:16 pm

Hi, I like I lot but some how on my RedHat Linux kernel.com 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003 i686 i686 i386 GNU/Linux
command given doesn’t work:
export HISTTIMEFORMAT=’%F %T ‘
I am running bash as following output said:
[root@kernel root]# echo $SHELL
/bin/bash
Any ideas?
Thx
Christian

27 Nihar October 29, 2008 at 8:31 pm

Simply great. It will be of great help in my day- to – day development work at office.

28 Muthu November 3, 2008 at 11:34 pm

It is an excellent article. These tricks helps me a lot in making commandline usage more interesting and smooth. Thanks

29 DavidTan December 8, 2008 at 12:08 pm

What a nice list. Thanks!

30 Velusamy January 5, 2009 at 1:32 am

Excellent Post

31 sharmila January 16, 2009 at 10:44 pm

Hi

This article very is usefull, in fact more informative. I need a help from you all that I want the history command shoud shows the command with date:time:servername:userid:user’s hostname or ip:command for monitoring purpose.

At the same time, I have to capture in a file what are the command entered by user then the file redirect to some where.

Your help is more appreciated in this regards. This is going to be implemented in red hat linux

regards
sharmila

32 nagaraju.k January 18, 2009 at 1:44 pm

Hi,

Really great tips yaar….. I did not know in detail that history of commands work like this… Thanks alot and kindly post articles like above..which will educate geeks like me….

33 nagaraju.k January 18, 2009 at 1:46 pm

Hi sharmila..

I am a system administrator in an insurance company working on RHEL. What bout you? I am presently trying Ubuntu8.1 desktop version..really its a great os.

34 Ramesh January 21, 2009 at 1:22 am

This article is very good,you are given very good explanation for History command in Linux, it’s very useful

35 strang January 25, 2009 at 3:13 pm

Hi,
> # export HISTTIMEFORMAT=’%F %T ‘
> # history | more
> 1 2008-08-05 19:02:39 service network restart
> 2 2008-08-05 19:02:39 exit
Is there any possibility to see history in this format without “export HISTTIMEFORMAT=’%F %T “.
If no — How I can delete (clear) ’%F %T ‘ from HISTTIMEFORMAT ?
Thanks!

36 Maxwell April 2, 2009 at 3:16 pm

Great website, great article, awesome comments section.

37 Tom May 20, 2009 at 1:23 am

Hi!

This is a very extensive and useful description. I worked on AIX many years ago. There was a method, with I could handle the history in vi mode. I don’t remember exactly. Maybe there was a prerequisite setting: the EDITOR environment variable?
And, I could enter in the vi mode with with ESC+K .

Now I’m using RHEL, and I’m searching about that, if it’s working in Linux too.

regards

Tom

38 Tom May 25, 2009 at 2:44 am

Hi!

I’am again. I’ve found it:

set -o vi

And entring in vi mode is just with the ESC.

Tom

39 Parag Dixit June 10, 2009 at 12:25 pm

Great article!!!
This page went straight away into my favorites…
I was looking for a shortcut like Ctrl-R , but this did not work for me. one friend suggested used of Alt-P instead and I use it extensively…

40 thiru June 12, 2009 at 5:14 am

Hi All,

Any one can help me on linux
1. How to check the 2 or 3 week log in log with time and date.
* i already try lot of command from this forum andmany other forum.

Please help me !!!!!!!!!

41 srinivas antarvedi June 17, 2009 at 1:31 am

Thanks for the post

i do found
HISTTIMEFORMAT,
HISTIGNORE,
HISTSIZE as useful in multi user environment..

HISTTIMEFORMAT will be useful when there is disaster to trackdown
the time which can be comparable with the service down email notification

42 Ramesh Natarajan June 21, 2009 at 12:12 am

@Jean-Luc Lacroix, Roshan, Nihar, Muthu, DavidTan, Velusamy, Ramesh, Nagaraju,

Thanks a lot for your comment. I’m very happy that you found this article useful.
 
@Maxwell,

Yeah. The comment section on this article is very engaging and I’m very greatful to all those who commented on this article.
 
I’m hoping that everybody who reads this comment section would take some time to leave a response.
 

@Christian,

I tried that on Red Hat Linux and it works without any problem. I tried on 2.6 kernel. But, I don’t think that is the issue for you.
Can you make sure that you type the following command, instead of copy/paste. Sometimes, copy/paste may do some weird things.

$ export HISTTIMEFORMAT=' %F %T';

 
@Strang,
Why would you want to display the history in that format without using HISTTIMEFORMAT? Can you please provide little bit more details on what you are looking for?
 

@Tom,
Thanks for following up on this comment section with an answer to your own question.

 

@Parag,
mm.. I wonder why Ctrl-R didn’t work for you. Is Ctrl-[character] combination somehow disabled on your system. Anyway, I’m glad you found the Alt-P helpful instead.
 

@Thiru,
What log are you trying to look for? Can you explain little bit more in detail on what exactly you are trying to achieve?
 

@Srinivas,
Yeah. Once you start using HISTTIMEFORMAT and HISTIGNORE, you will wonder, how you’ve used Linux command-line for so long without using this feature.

43 Sourabh June 23, 2009 at 12:37 am

I may require the argument of nth cmd instead of previous command…
How can i get it ?

44 yakupm June 24, 2009 at 1:57 pm

Excellent as you can tell from the ongoing positive feedback
-yak

45 Ramesh Natarajan June 24, 2009 at 7:08 pm

@Sourabh,

  3  ls /etc/sysctl.conf
  4  export HISTTIMEFORMAT='%F %T';
  5  uname -a

 
Let us say in the above example, you want to take the argument of history command#3 (which is ls /etc/sysctl.conf) and use it. You can do that as shown below.

$ cat !3:$
[Note: This is equivalent to "cat /etc/sysctl.conf" ]

 
@yakupm,
Thanks for your comment. I’m very glad that you found this article helpful.

46 agn July 6, 2009 at 6:34 am

You can also use $_ to get the last arg of the previous command.

$ ls /etc/passwd
$ cat $_

Also, ‘cd -’ takes you to your previous location.

$ pwd
/etc/apache2/sites-enabled
$ cd /var/log/apache2
$ pwd
/var/log/apache2
$ cd -
$ pwd
/etc/apache2/sites-enabled

47 Ramesh Natarajan July 8, 2009 at 10:20 pm

@Agn,

Thanks for explaining the meaning of $_ . It is definitely very helpful, when there are several arguments in the previous command and we want only the last one.

Regarding the “cd -”, it is definitely an awesome cd hacks, that I’ve mentioned a while back in my 6 awesome cd command hacks article.

48 Sebastian Kusnier October 13, 2009 at 1:55 am

Other way to get the last arg of the previous commmand is:

ESC-_

ls /etc/passwd
cat[ESC-_] -> cat /etc/passwd

49 Keith Hearn October 27, 2009 at 4:42 pm

This is a great resource.

Another useful one is !* which give you all of the arguments from the previous command:
$ ls foo bar bing
foo bar bing
$ echo !*
echo foo bar bing
foo bar bing

You can also get the Nth argument with !:N
$ ls foo bar bing
foo bar bing
$ echo !:2
echo bar
bar

You can combine this with matching the most recent line that begins with a particular string:
$ echo !ls:1
echo foo
foo

$ echo !ls:*
echo foo bar bing
foo bar bing

$ echo !ls:0
echo ls
ls

Ok, the last one seems kinda silly, but it could be useful if you have several commands that start with the same string and you want to know which one you did most recently.

$ foocreate
$ foostart
$ foostop
$ foostart

$ echo !foo:0
echo foostart
foostart

Keith

50 Nanda March 15, 2010 at 12:37 am

Hi,

We have one server and everybody using that server logs in using root and we do not normally logged out. I am just wondering if I can record all the commands type from all terminal including ssh terminals.
Is there any way ?

51 dojuba May 5, 2010 at 2:18 am

A very useful article and comments. In case anybody is interested, in HISTIGNORE wildcard * works. Like
HISTIGNORE=”ls:ls *:”
will ignore ls, ls -ltr, ls -a etc but not lsattr, or other commands that start with ‘ls’ (which is obviously the case if you put ls* )

52 adam May 23, 2010 at 10:24 pm

hello there!
thank you,

I have to use “history -w” after “history -c” to Clear all the previous history.
but why ?

53 Hello July 12, 2010 at 10:21 pm

It is very good that your document it will very effective for me to develop my knowledge

thank you very very much so what i can do for you

54 steeven paul September 14, 2010 at 3:56 am

Wonderful articles. thank u very much.

55 Sameed September 22, 2010 at 2:40 am

Nice articles !!!! :D

I was trying to Block only ” history -c” command. But history command came under bash. Is there any way to prevent the user to delete there history. ?
User should not allow to delete history … :(

56 stanley November 18, 2010 at 12:39 pm

friends,
is they any way to complete the recent commands, by typing just a few letters of it?
and pressing ALT+P, which gives the history of the commands?
thanks

57 Maha November 23, 2010 at 1:40 pm

Best description read so far about History … fast and clear to understand :)
Thanks!

58 Paul Makepeace February 2, 2011 at 10:08 am

You can use !$ for the last arg of the last command (little shorter than !!:$) I used to use this so much back in the day before up & down arrows working on all terminals it’s wired into my muscle memory. V useful!

59 jigs March 2, 2011 at 12:46 pm

does “history -c” command leaves no trail? are the sessions or transactions also deleted in that “history -c” command?

60 santhosh March 18, 2011 at 4:53 am

super

61 Vishwajeet Kumar April 21, 2011 at 8:24 am

The tutorial is excellent

62 Alex June 7, 2011 at 1:36 am

Thanks for the great tips!

I have another question, how to make the history to show the time stamp ( you already did), userID, ip address and the command?

63 Andy Lee Robinson June 29, 2011 at 3:57 am

Some nice tips there
“cd -” is one command I’ve been looking for since 4dos did the same using “cdd”

What I really really missed was the forward version of Ctrl-R
When searching back for a command, I frequently overshoot and can’t go back.
(histsize=1000000 :-)
The man page says it is Ctrl-S, but this clashes on the command line and suspends output until Ctrl-Q is pressed.

My solution is to add this line to ~/.inputrc in your home dir:
Control-t: forward-search-history

(Ctrl-T transposes two chars and not as useful as searching forward, so can be dumped…)

Et voila!

64 Andy Lee Robinson July 8, 2011 at 11:44 am

Actually, add
Control-t: forward-search-history
to /etc/inputrc
or copy /etc/inputrc to your home dir and modify.

The method I described stopped the HOME and END keys working, because a user’s ~/.input.rc seems to replace and not append to the server default in /etc/input.rc !

65 Shivaprakash September 7, 2011 at 7:48 am

Nice tutorial

66 Mike September 29, 2011 at 9:32 am

As far as your request to notify you of a use for an alternate history file, I have one:

We track various users’ commands to determine what the commands were that produced a bad server/result/etc. Users don;t always provide honest answers. So I hide the history file in another portion of the file system and sort them out by user.

However, I do have one question that I have not been able to figure out a solution for.

When I set the HISTTIMEFORMAT to show date and time (%F %T) and also set the HISTFILE to my custom location, the time format is *always* a UNIX timestamp, and never in a user-readable format.

Does anyone have a solution for this?

67 VJ October 5, 2011 at 7:31 am

Thanks a lot , really helpful in finding something that I was looking for.

68 Arun Saha October 16, 2011 at 6:57 pm

Very helpful indeed!

We saw three uses of HISTCONTROL

export HISTCONTROL=ignoredups
export HISTCONTROL=erasedups
export HISTCONTROL=ignorespace

Are they mutually exclusive? What if someone wants both “ignoredups” and “ignorespace”?

69 Jan Goeteyn October 18, 2011 at 8:04 am

Please note that the F8 behavior (= cycling only that part of the history that begins with the characters you typed so far) and is known from the Windows cmd.exe shell, has a linux equivalent by pressing Ctrl r again to find the next previous instance of that word or letter. Subsequently pressing backspace cycles in the oposite direction until you are again at the most recent instance still matching that word or letter.

This also answers the issue from Andy Lee Robinson, who frequently got an overshoot due to his entousiasm to repeatedly enter the Ctrl r command and can’t go back: Use back space to go back.

70 Seb October 22, 2011 at 6:20 am

@ Arun :

export HISTCONTROL=ignorespace:erasedups

By the way, for me on Ubuntu 10.10 with
export HISTIGNORE=”ls:ls -ltr”

ls -ltr still appears in history, I need to set “ls *”

71 Abdullah nawash December 28, 2011 at 2:58 am

Thank you so much for enlightening us.
use history -d (to delete specific line from history)

72 Abhijit January 3, 2012 at 1:35 pm

Awesome work Ramesh !!! Kudos to your efforts.

73 BUKUMI OLUYEDI January 5, 2012 at 3:22 pm

Kindly apprise more on the LINUX COMMANDS. I am a undergraduate student of computer engineering from Nigeria.

74 acebee January 24, 2012 at 2:18 am

excellent – reminds me of time spent distant past in bengaluru on a certain floor sitting on a old as400..

Leave a Comment

Previous post:

Next post: