|
ex, short for EXtended, is a line editor for Unix systems. A line editor is a text editor computer program that is oriented around lines. ...
Unix (officially trademarked as UNIX) is a computer operating system originally developed in the 1960s and 1970s by a group of AT&T employees at Bell Labs including Ken Thompson, Dennis Ritchie, and Douglas McIlroy. ...
The original ex was an advanced version of the standard Unix editor ed, included in the Berkeley Software Distribution. ex is similar to ed, with the exception that some switches and options are modified so that they are more user-friendly. The text editor ed was the original standard on the Unix operating system. ...
Berkeley Software Distribution (BSD, sometimes called Berkeley Unix) is the Unix derivative distributed by the University of California, Berkeley, starting in the 1970s. ...
User Friendly is an online daily comic strip about the staff of a small, fictional internet service provider, Columbia Internet. ...
ex was eventually given a screen oriented visual interface (adding to its command line oriented operation), thereby becoming the vi text editor. In recent times, ex is implemented as a personality of the vi program; most variants of vi still have an "ex mode", which is invoked using the command ex, or from within vi for one command by typing the : (colon) character. Although there is overlap between ex and vi functionality, some things can only be done with ex commands, so it remains useful when using vi. The correct title of this article is vi. ...
In computer software, a mode is distinct method of operation within a computer program, in which the same user input can produce different results depending of the state of the computer. ...
The core ex commands which relate to search and replace are essential to vi. For instance, the ex command issued from vi :1,$/XXX/YYY/g replaces every instance of XXX with YYY. The 1,$ means every line in the file (a synonym for this is the percent sign). The 'g' means replace every instance on every line (if it was not specified, then only the first instance on each line would be replaced). ex has a synonym e in HP-UX environments. Look up Synonym in Wiktionary, the free dictionary. ...
HP-UX (Hewlett Packard UniX) is Hewlett-Packards proprietary implementation of the Unix operating system, based on System V (initially System III). ...
Switches ex recognises the following switches: - - (obsolete) suppresses user-interactive feedback
- -s (XPG4 only) suppresses user-interactive feedback
- -l sets lisp editor option
- -r recover specified files after a system crash
- -R sets readonly
- -t tag Edit the file containing the specified tag
- -v invoke visual mode (vi)
- -w set window size n
- -x set encryption mode
- -C encryption option
- file specifies file to be edited
X/Open Portability Guide Issue 4 Also known as Common Applications Environment Specification Issue 4. ...
See also
|