请输入您要查询的百科知识:

 

词条 GNU Readline
释义

  1. Editing modes

     Emacs keyboard shortcuts 

  2. Choice of the GPL as GNU Readline's license

  3. Sample code

  4. Notes and references

  5. External links

{{Infobox software
| name = GNU Readline
| logo = Heckert GNU white.svg
| author = Brian Fox
| developer = Chet Ramey
| released = {{start date and age|1989}}
| latest release version = 7.0
| latest release date = {{Start date and age|2016|09|15}}
| latest preview version =
| latest preview date =
| programming language = C
| genre = Library
| license = GNU General Public License
| website = {{URL|https://tiswww.case.edu/php/chet/readline/rltop.html}}
}}

GNU Readline is a software library that provides line-editing and history capabilities for interactive programs with a command-line interface, such as Bash. It is currently maintained by Chet Ramey as part of the GNU Project.

It allows users to move the text cursor, search the command history, control a kill ring (a more flexible version of a copy/paste clipboard) and use tab completion on a text terminal. As a cross-platform library, readline allows applications on various systems to exhibit identical line-editing behavior.

Editing modes

Readline supports both Emacs and vi editing modes, which determine how keyboard input is interpreted as editor commands. See Editor war#Differences between vi and Emacs.

Emacs keyboard shortcuts

Emacs editing mode key bindings are taken from the text editor Emacs.

On some systems, {{key press|Esc}} must be used instead of {{key press|Alt}}, because the {{key press|Alt}} shortcut conflicts with another shortcut. For example, pressing {{key press|Alt|f}} in Xfce's terminal emulator window does not move the cursor forward one word, but activates "File" in the menu of the terminal window, unless that is disabled in the emulator's settings.

  • {{key press|TAB}} : Autocompletes from the cursor position.
  • {{key press|Ctrl|a}} : Moves the cursor to the line start (equivalent to the key {{key press|Home}}).
  • {{key press|Ctrl|b}} : Moves the cursor back one character (equivalent to the key {{key press|Left}}).
  • {{key press|Ctrl|c}} : Sends the signal SIGINT to the current task, which aborts and closes it.
  • {{key press|Ctrl|d}}
    • Sends an EOF marker, which (unless disabled by an option) closes the current shell (equivalent to the command exit). (Only if there is no text on the current line)
    • If there is text on the current line, deletes the current character (then equivalent to the key {{key press|Delete}}).
  • {{key press|Ctrl|e}} : (end) moves the cursor to the line end (equivalent to the key {{key press|End}}).
  • {{key press|Ctrl|f}} : Moves the cursor forward one character (equivalent to the key {{key press|Right}}).
  • {{key press|Ctrl|g}} : Abort the research and restore the original line.
  • {{key press|Ctrl|h}} : Deletes the previous character (same as backspace).
  • {{key press|Ctrl|i}} : Equivalent to the tab key.
  • {{key press|Ctrl|j}} : Equivalent to the enter key.
  • {{key press|Ctrl|k}} : Clears the line content after the cursor and copies it into the clipboard.
  • {{key press|Ctrl|l}} : Clears the screen content (equivalent to the command clear).
  • {{key press|Ctrl|n}} : (next) recalls the next command (equivalent to the key {{key press|Down}}).
  • {{key press|Ctrl|o}} : Executes the found command from history, and fetch the next line relative to the current line from the history for editing.
  • {{key press|Ctrl|p}} : (previous) recalls the prior command (equivalent to the key {{key press|Up}}).
  • {{key press|Ctrl|r}} : (reverse search) recalls the last command including the specified character(s). A second {{key press|Ctrl|r}} recalls the next anterior command that corresponds to the search
  • {{key press|Ctrl|s}} : Go back to the next more recent command of the research (beware to not execute it from a terminal because this command also launches its XOFF). If you changed that XOFF setting, use {{key press|Ctrl|q}} to return.
  • {{key press|Ctrl|t}} : Transpose the previous two characters.
  • {{key press|Ctrl|u}} : Clears the line content before the cursor and copies it into the clipboard.
  • {{key press|Ctrl|v}} : If the next input is also a control sequence, type it literally (e. g. {{key press|Ctrl|v}} {{key press|Ctrl|h}} types "^H", a literal backspace.)
  • {{key press|Ctrl|w}} : Clears the word before the cursor and copies it into the clipboard.
  • {{key press|Ctrl|x}} {{key press|Ctrl|e}} : Edits the current line in the $EDITOR program, or vi if undefined.
  • {{key press|Ctrl|x}} {{key press|Ctrl|r}} : Read in the contents of the inputrc file, and incorporate any bindings or variable assignments found there.
  • {{key press|Ctrl|x}} {{key press|Ctrl|u}} : Incremental undo, separately remembered for each line.
  • {{key press|Ctrl|x}} {{key press|Ctrl|v}} : Display version information about the current instance of Bash.
  • {{key press|Ctrl|x}} {{key press|Ctrl|x}} : Alternates the cursor with its old position. (C-x, because x has a crossing shape).
  • {{key press|Ctrl|y}} : (yank) adds the clipboard content from the cursor position.
  • {{key press|Ctrl|z}} : Sends the signal SIGTSTP to the current task, which suspends it. To execute it in background one can enter bg. To bring it back from background or suspension fg ['process name or job id'] (foreground) can be issued.
  • {{key press|Ctrl|_}} : Incremental undo, separately remembered for each line.
  • {{key press|Alt|b}} : (backward) moves the cursor backward one word.
  • {{key press|Alt|c}} : Capitalizes the character under the cursor and moves to the end of the word.
  • {{key press|Alt|d}} : Cuts the word after the cursor.
  • {{key press|Alt|f}} : (forward) moves the cursor forward one word.
  • {{key press|Alt|l}} : Lowers the case of every character from the cursor's position to the end of the current word.
  • {{key press|Alt|r}} : Cancels the changes and puts back the line as it was in the history.
  • {{key press|Alt|u}} : Capitalizes every character from the cursor's position to the end of the current word.
  • {{key press|Alt|.}} : Insert the last argument to the previous command (the last word of the previous history entry).

Choice of the GPL as GNU Readline's license

GNU Readline is notable for being a free software library which is licensed under the GNU General Public License (GPL). Free software libraries are far more often licensed under the GNU Lesser General Public License (LGPL), for example, the GNU C Library, GNU gettext and FLTK.

A developer of an application who chooses to link to an LGPL licensed library can use any license for the application.[1] But linking to a GPL licensed library such as Readline requires the entire combined resulting application to be licensed under the GPL when distributed, to comply with section 5 of the GPL.[2][3]

This licensing was chosen by the FSF on the hopes that it would encourage software to switch to the GPL.{{cn|date=March 2019}} An important example of an application changing its licensing to comply with the copyleft conditions of GNU Readline is CLISP, an implementation of Common Lisp. Originally released in 1987, it changed to the GPL license in 1992,[4] after an email exchange between one of CLISP's original authors, Bruno Haible, and Richard Stallman, in which Stallman argued[5] that the linking of readline in CLISP meant that Haible was required to re-license CLISP under the GPL if he wished to distribute the implementation of CLISP which used readline.[6]

Another response has been to not use this in some projects, making text input use the primitive Unix terminal driver for editing.

Alternative libraries have been created with other licenses so they can be used by software projects which want to implement command line editing functionality, but be released with a non-GPL license. Typical among these is the BSD-licensed libedit. Some applications, such as MariaDB[7] or PHP[8], allow for the user to select at build time whether to link with GNU Readline or with libedit. Other command-line editing libraries serve a dual purpose: they have APIs which align those of some main project and have compatible license terms. An example of this is the Haskeline library, which exposes a Haskell-compatible API to both the Glasgow Haskell Compiler[9] and to other Haskell projects which need line-editing services.[10]

Sample code

The following code is in C and must be linked against the readline library by passing a -lreadline flag to the compiler:

  1. include
  2. include
  3. include

int main()

{
    // Configure readline to auto-complete paths when the tab key is hit.    rl_bind_key('\\t', rl_complete);
    for(;;) {        // Display prompt and read input        char* input = readline("prompt> ");
        // Check for EOF.        if (!input)            break;
        // Add input to readline history.        add_history(input);
        // Free buffer that was allocated by readline        free(input);    }    return 0;

}

Notes and references

1. ^{{cite web|url=https://www.gnu.org/copyleft/lesser.html|title=GNU Lesser General Public License|year=2007|work=The GNU Lesser General Public License v3.0 - GNU Project|publisher=Free Software Foundation|accessdate=2011-09-03}}
2. ^{{cite web|url=https://www.gnu.org/licenses/gpl-3.0.html|title=GNU General Public License|year=2007|work=The GNU General Public License v3.0 - GNU Project|publisher=Free Software Foundation|accessdate=2011-09-03}}
3. ^{{cite web|url=https://www.gnu.org/licenses/gpl-faq.html#IfLibraryIsGPL|title=Frequently Asked Questions about the GNU licenses|year=2010|work=Frequently Asked Questions about the GNU Licenses - GNU Project|publisher=Free Software Foundation|accessdate=2011-09-03}}
4. ^{{cite web|url=http://clisp.cvs.sourceforge.net/viewvc/clisp/clisp/COPYRIGHT|title=CLISP copyright notice|year=1992|publisher=CLISP repository|accessdate=2011-09-03}}
5. ^{{cite web|url=http://clisp.cvs.sourceforge.net/viewvc/clisp/clisp/doc/Why-CLISP-is-under-GPL|title=Why CLISP is under GPL|year=1992|publisher=CLISP repository|accessdate=2011-09-03}}
6. ^{{cite web|url=http://www.clisp.org/impnotes/faq.html#faq-gpl|title=License - why GNU GPL?|work=Frequently Asked Questions (With Answers) about CLISP|publisher=CLISP team|accessdate=2011-09-03}}
7. ^{{cite web|url=https://github.com/MariaDB/server/blob/10.2/BUILD/SETUP.sh|title=MariaDB/server/blob/10.2/BUILD/SETUP.sh|work=MariaDB repository|publisher=MariaDB Foundation|accessdate=2017-10-24}}
8. ^{{cite web|url=https://github.com/php/php-src/tree/master/ext/readline|title=php/php-src/tree/master/ext/readline|work=PHP repository|publisher=The PHP Group|accessdate=2017-10-24}}
9. ^{{cite web|url=https://wiki.haskell.org/Applications_and_libraries|title=Applications and libraries|work=Haskell wiki|publisher=haskell.org|accessdate=2017-10-24}}
10. ^{{cite web|url=https://github.com/judah/haskeline|title=judah/haskeline: A Haskell library for line input in command-line programs|work=Haskeline repository|author=Judah Jacobson|accessdate=2017-10-24}}

External links

{{Portal|Free and open-source software}}
  • [https://tiswww.case.edu/php/chet/readline/rltop.html GNU readline homepage]
{{GNU}}{{DEFAULTSORT:Gnu Readline}}

3 : Free software programmed in C|GNU Project software|Text user interface libraries

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/20 22:52:49