Visits

[+/-]
Today:
Yesterday:
Day before yesterday:
335
517
481

+36
This week:
Last week:
Week before last week:
2194
2962
3860

-898

Last month:
Month before last month:
8452
15650
24339

-8689

Visitor Data

IP ADDRESS
38.107.179.213
-
Location
United States
-
Browser
Unknown Browser
-
Operating System
Unknown Operating System


   
Add to: JBookmarks Add to: Bookmarks.cc Add to: Digg Add to: Reddit Add to: Upchuckr Add to: StumbleUpon Add to: Slashdot Add to: Blogmarks Add to: Technorati Add to: Newsvine Add to: Blinkbits Add to: Smarking Add to: Spurl Add to: Google Information
Editing a BASH command

Editing a Bash Command

Try typing a long command say, then, type "fc" for an easy way
to edit the command.

$ find /etc -iname '*.cnf' -exec grep -H 'log' {} \;
$ fc

"fc" will bring the last command typed into an editor, "emacs" if
that's the default editor. Type "fc -l" to list last few commands.

To seach for a command, try typing "CTL-r" at the shell prompt for
searching. "CTL-t" to transpose, say "sl" was typed by you want "ls".



Hints when using "fc: in emacs:

ESC-b     move one word backward
ESC-f     move one word forward
ESC-DEL   kill one word backward
CTL-k     kill point to end
CTL-y     un-yank killed region at point