Vi Introduction Tony Kombol.

Slides:



Advertisements
Similar presentations
In the last Session… ls -l command seven fields nine permissions of a file ls -ld file ownership file permissions (three-tiered file protection system)
Advertisements

CS 497C – Introduction to UNIX Lecture 8: The vi/vim Editor Chin-Chih Chang
A Guide to Unix Using Linux Fourth Edition
Editing with vi Or more fun than you thought you’d have without a mouse Prof. Chris GauthierDickey.
Program Development Tools IDE vs point tools Two tool flavors exist for developing embedded software: -IDEs: (Integrated Development Environments) i.e.,
CIS 240 Introduction to UNIX Instructor: Sue Sampson.
VIM: The basics Tang Wai-Chung, Matthew (MaFai) 29/12/2006.
Vi Editor TA for ITIS3100: Xu Fei
Chapter 5 Editing Text Files
CS 202 Computer Science II Lab Fall 2009 September 3.
1 Using Editors Editors let you create and edit ASCII files UNIX normally includes two editors: vi and Emacs Vi and Emacs are screen editors: they display.
CS 497C – Introduction to UNIX Lecture 9: The vi/vim Editor Chin-Chih Chang
Starting Vi Opening an existing file vi filename Creating a new file vi filename In your workshop directory, create a new file called mysong vi mysong.
CSCI 330 T HE UNIX S YSTEM Editing files. E DITOR C ONCEPTS Editing a file is to modify the content of a file Text editor: Enter and modify text in a.
Using Linux Text Editors. Use Non-Graphical Linux Text Editors Graphical Text Editor.
1 Unix Editors (ee, ed, ex, vi, vim) and Compilers (g77, gcc) Speaker: Li-Wen Chen Date:
Chapter 3 Mastering Editors
Chapter Three The UNIX Editors. 2 Lesson A The vi Editor.
T HE VI EDITOR. vi has 2 modes: command mode (initial or "default" mode) insert mode [Esc] is used to switch to command mode. In general, vi commands:
Course materials may not be reproduced in whole or in part without the prior written permission of IBM. 5.1 © Copyright IBM Corporation 2008 Unit 7 Editing.
Software I: Utilities and Internals Lecture 2 – The vi Text Editor * Modified from Dr. Robert Siegfried original presentation.
Introduction to Vim Robbie CSCI2100 Data Structures Tutorial 3.
UNIX Intro vi  vi is the standard UNIX text editor v Contents 1.Why use vi ? 2. vi Basics 3.Moving Around 4.Inserting Text.
Text editors Why should I use an editor ? It is very important to able to use at least one text mode editor a text mode editor is so useful on remote machines.
Unix Editors. u Editors in Unix come in two general flavours: –modal editors have "modes" v generally input mode and command mode –input mode allows entry.
Tony Kombol.  Why text edit?  Many programs and features require configuration ▪ Configuration is kept in files ▪ Usually in the /etc directory  Changes.
Unix Session IV.
Text Editing February 2 nd, 2004 Class Meeting 3.
Chapter Three Text Editing1 System Programming Text Editing.
Unix Environment Input Output 2  List Content (ls) ◦ ls (list current directory) ◦ ls –all (include hidden files/folders)  Make directory (mkdir) ◦
VI EDITOR University of Mississippi. Vi Editor What is Vi ? ▫Vi is a screen based editor. ▫The screen of your terminal will act as a window into the file.
Chapter 9 Using Text Editors. vi Editor visual Editor, ASCII text editor, no formatting capabilities almost as powerful as MS Word, has 26 clipboards.
1May 16, 2005 Week 2 Lab Agenda Command Line FTP Commands Review More UNIX commands to learn File name expansion - * Introduction of vi.
Introduction to Unix (CA263) File Editing By Tariq Ibn Aziz.
Lesson 4-Mastering the Visual Editor. Overview Introducing the visual editor. Working in an existing file with vi. Understanding the visual editor. Navigating.
Chapter Three The UNIX Editors.
Linux Class #03. File Access Permissions Types of users in Linux: Local User (u) Group User (g) Other User (o) Each User can have 3 types of permissions:
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
Text editing and more basic commands CS 2204 Class meeting 3 *Notes by Doug Bowman and other members of the CS faculty at Virginia Tech. Copyright
Agenda Using vi Editor Starting vi Session Command / Input Modes Entering Text Editing Text Saving Edited File Aborting Editing Session.
Agenda Using vi Editor Starting vi Session Command / Input Modes
Vi editor Pronounced: `vee eye‘’. Agenda Describe the background of vi Editor Use vi editor to: create text files edit text files Our Goal is to create.
1 Lecture 3 More on editors: emacs and vi COP 3344 Introduction to UNIX.
Getting Started with Linux Linux System Administration Editors.
ITX2000 Remote hosts and web servers Prof. Xiaohong (Sharon) Gao Room: T125 Ext: Week 14 – UNIX vi text editor.
Basic VI Tran, Van Hoai Faculty of Computer Science and Engineering HCMC Uni. of Technology
Purdue Linux Users Group Presents Linux 201: Session 1 Everything you ever wanted to do in VIM Thor Smith.
CS:414 introduction to Unix and Linux
Vim basics Vi IMproved.
Guide To UNIX Using Linux Third Edition
Nassau Community College
Vi Editor.
Unix Fundamentals - Part iii vi Editor
Vim.
Linux 104 Training Module File Editing.
Lecture 3 More on editors: emacs and vi COP 3344 Introduction to UNIX.
IT244 - Introduction to Linux / Unix Instructor: Bo Sheng
Linux System Administration Editors
Technical University of Kosice
Text Editors Vim (Chapter 6) Emacs (Chapter 7)
The Linux Command Line Chapter 12
Emacs CSC 135.
Chapter 2 Basic vi Editor.
Linux Operations and Administration
The Emacs Editor Read: Forouzan, Appendix C
CSCI The UNIX System Editing files
In the last class… The vi basics command, input and ex mode
Day 5 Emacs Editor David A. Gaitros Department of Computer Science
The Linux Command Line Chapter 12
Presentation transcript:

vi Introduction Tony Kombol

Text Editors Why text edit? Many programs and features require configuration Configuration is kept in files Usually in the /etc directory Changes typically done via: Text editor Almost all programs/devices have text configuration files Gives total control in configuring GUI May or may not have a GUI configuration program available Limited control via GUIs Can only do what the GUI is programmed to change

Text Editors Why vi? It’s not pretty It’s not intuitive It’s not easy to use But: it’s everywhere Every Linux distro and UNIX system comes with vi or it’s cousin vim (vi improved) It is also a very powerful editor

vi basics vi has two modes: Starts in Command mode Command mode Tells editor what to do next: insert save quit etc. Also allows navigation Insert mode Change data in the file Starts in Command mode Bottom line of screen used for commands File contents (text) shows in upper lines Note: <Esc> will always return you to command mode

vi opened in Debian Linux

vi opening the /etc/network/interfaces file Note: /etc/interfaces is owned by root, but user tkombol opened this file to edit. That is allowed, but tkombol does not have the authority to save any changes. Hence the warning of [readonly]

vi trying to write and quit the /etc/network/interfaces file

Basic File Commands Save and exit: Make sure you are in command mode! hit <Esc> to be sure :w [filename] Save (write) the file Optional new filename :q Quit if no changes have been made Warn if changes made, will not exit :wq save file and quit :q! Force to quit Changes, if any, not saved

vi modes Command/navigation mode Navigation Delete, paste, find, etc. Move cursor around in the text Delete, paste, find, etc. Enter commands from this mode Insert mode Enter and edit text characters Use <Esc> to return to command mode

vi modes Common commands to enter insert mode: i: insert text just before the cursor I: insert text at the beginning of the line the cursor is on a: append text after the cursor position A: append text at the line’s end o: insert a new line after the current line O: insert a new line before the current line s: substitute the character at cursor position and then insert S: substitute the current line r: replace the current character R: replace the current characters

Delete and block operations (cut, copy and paste) Can delete/manipulate characters in command model In command model, use <v> to start a block operation Move cursor to select start of block Type v to start the block mark Type c to cut block , y to copy Type p to paste the block to right position of cursor use shortcuts for delete dd: delete the current line dw: delete to end of the current word use shortcuts for paste yy: copy the current line yw: copy the current word P: paste to the left position of cursor

Undo/redo/delete u: U: <ctrl-r>: :e! x X undo last operation undo all operations in a line <ctrl-r>: redo :e! give up all operations and begin edit again x delete a character to the right X delete a character to the left

search in text vi supports to search and find a text in the whole file From command mode: /keyword to search forward (down) ?keyword to search backward (up) Use n to find next

Last Note The name of VI may change from distro to distro vi vim tinyvm Etc…

More resources http://en.wikipedia.org/wiki/Vi http://en.wikipedia.org/wiki/Vim_%28text_editor%29