From 0f7ab3dc0ed5cfddfc3002992f0525756b6b670e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:02:09 +0200 Subject: Adding upstream version 3.46.8. Signed-off-by: Daniel Baumann --- help/C/overview.page | 101 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 help/C/overview.page (limited to 'help/C/overview.page') diff --git a/help/C/overview.page b/help/C/overview.page new file mode 100644 index 0000000..ab5046e --- /dev/null +++ b/help/C/overview.page @@ -0,0 +1,101 @@ + + + + + + + Sindhu S + sindhus@live.in + 2013 + + + Ekaterina Gerasimova + kittykat3756@gmail.com + 2013 + + + + + What is a terminal? + + + Overview of a terminal + +

Terminal is a terminal program for GNOME. The + following terms and their descriptions will help you to be familiar with + Terminal and its capabilities.

+ + + + A terminal +

A terminal is a text input point in a computer that is also called + the Command Line Interface (CLI).

+
+ + Physical terminals +

IBM 3270, VT100 and many others are hardware terminals that are no + longer produced as physical devices. To emulate these terminals, there are + terminal emulators.

+
+ + Terminal emulators +

Emulation is the ability of a computer program to imitate another + program or device.

+ +

A terminal emulator, also called tty, is a software program that emulates + a video terminal in modern computers that use graphical user interfaces + and provide interactive access to applications that run only in the + command line environments. These applications may be running either on the + same machine or on a different one via telnet, ssh, + or dial-up.

+
+ + VTE +

Virtual Terminal Environment (VTE) is a terminal emulator which + emulates a text terminal inside a graphical user interface (GUI) + environment. Terminal is largely based on the VTE. + VTE has widgets that implement a fully functional terminal + emulator.

+
+ + Shell +

A shell is a program that provides an interface to invoke or + “launch” commands or another program inside a terminal. It also allows you + to view and browse the contents of directories. Popular shells include + bash, zsh, fish.

+
+ + Escape Sequences +

An escape sequence is a series of characters used to change the meaning + of data in a terminal. Escape sequences are used when a computer has only + single channel to send information back and forth. Escape sequences are + used to distinguish if data being sent is a command to be executed or + information to be stored and displayed.

+
+ + + Prompt +

A prompt is also called a command prompt. It is a sequence of + characters used in the command line environment to indicate the readiness + of the shell to accept commands.

+ +

A prompt usually ends with the characters $, %, + # or > and includes + information about the path of the present working directory. On Unix based + systems, it is common for the prompt to end in a $ or + # character depending on the user role such as $ + for user and # for superuser (also called root). +

+
+ + Command +

An input entered in the prompt to be executed is called a + command. It is a combination of the program name along with any + other additional parameters passed as flags to alter the execution of the + program.

+
+
+ +
-- cgit v1.2.3