Friday, November 18, 2016

Putty - Shell file commands


Working on Files through Putty(or shell scripting)




Source: http://www.linfo.org/vi/summary.html



Summary of Commands

The following list contains the basic commands presented in the first eight pages of this tutorial along with occasional examples of usage (shown in parenthesis). They are presented in roughly the same order in which they appear in the tutorial. (All commands that begin with a colon are followed by ENTER.)
vityped at the command line to open one or more files in the same directory
(vi tomato.txt   opens a file named "tomato.txt" in the current directory)
(vi parsley sage rosemary   opens the three files "parsley," "sage" and "rosemary" in the current directory)
vi *typed at the command line to open every file in the current directory
:qcloses (quits) a file to which no changes have been made
:q!quits without saving any changes
:wwrites (i.e., saves) the current file to disk
:wqwrites the buffer contents to disk (i.e., saves changes) and quits
ZZsame as :wq
iactivates text insert mode, inserting text immediately under the current position of the cursor
hmoves the cursor one character to the left
(2h   moves the cursor two characters to the left)
jmoves the cursor one line down
(3j   moves the cursor three lines down)
kmoves the cursor one line up
lmoves the cursor one character to the right
Gmoves the cursor to the desired line; moves the cursor to the last line of text if not preceded by a modifying integer
(5G   moves the cursor to the fifth line)
aswitches to insert mode and allows insertion of text immediately to the right of the cursor
xdeletes the character immediately under the cursor
(xxx   deletes the character immediately under cursor and then deletes the two characters to its right)
Xdeletes a single character to the left of cursor
Dremoves the text on the current line from the character under the cursor to the end of the line
dwdeletes the character immediately under the cursor and the remaining characters to the right of it in the same word
(2dw   deletes the character immediately under the cursor, the remaining characters to the right of it in same word and all of the next word)
dddeletes the entire line containing the cursor, and the cursor then moves to the next line
(2dd   deletes two consecutive lines beginning with the current line)
cwdeletes the character under the cursor and to its right in the same word and allows new characters to be typed in to replace them
(2cw   deletes the character under the cursor and to its right in the same word and in the next word, and then allows replacement characters to be typed in)
ccerases the current line and allows replacement text to be typed in
(2cc   erases the current line and the next line and allows replacement text to be typed in for both lines)
cbdeletes the characters to the left of the cursor in the current word and allows replacement characters to be typed in
(3cb   deletes the characters to the left of the cursor in the current word together with the two words to its left and then allows replacement text to be typed in)
Ractivates text input mode allowing text under and to the right of the cursor to be overwritten one character at a time
xptransposes two adjacent characters
deeptransposes two adjacent words
ddptransposes two adjacent lines
~changes case of the character under the cursor
Jjoins the current line with the next line
ureverses the effects of the most recent command that has changed the buffer
Uundoes all changes made to the current line during the current visit to it
:s/searches the text for the first instance of a designated string
(:s/cucumber   searches the text for the first instance of the string "cucumber")
nsearches the text for the next instance of a designated string
:s/ / /replaces the first instance of a designated string
(:s/cucumber/radish/   replaces the first instance of the string "cucumber" with the string "radish")
:%s/ / /replaces every instance of a designated string
(:%s/cucumber/radish/   replaces every instance of the string "cucumber" with the string "radish")
:rinserts text into the currently open file from another file
(:r lettuce.txt   inserts text into the currently open file from the file named "lettuce.txt")
:w>>appends the text from the currently open file into another file
(:w>> cabbage   appends the text from the currently open file into the file named "cabbage")

2 comments:

  1. :wq writes the buffer contents to disk (i.e., saves changes) and quits........ is this correct?

    ReplyDelete
  2. How to open file in edit mode, I know 'vi' will open file but if you want file to be opened in edit mode, not sure what else we need to use along with 'vi'?

    ReplyDelete