Bash: различия между версиями

Материал из Ай да Linux Wiki
Перейти к навигации Перейти к поиску
м
Строка 4: Строка 4:
 
| screenshot            = [[Image:Bash demo.png|250px]]
 
| screenshot            = [[Image:Bash demo.png|250px]]
 
| caption                = Изображение bash и sh сессии
 
| caption                = Изображение bash и sh сессии
| author                = [[Brian Fox (computer programmer)|Brian Fox]]
+
| author                = Brian Fox
 
| released              = {{start date and age|1989|6|7}}
 
| released              = {{start date and age|1989|6|7}}
 
| frequently updated    = yes
 
| frequently updated    = yes
| programming language  = [[C (programming language)|C]]
+
| programming language  =
| operating system      = [[Cross-platform]]
+
| operating system      = Cross-platform
| platform              = [[GNU]]
+
| platform              = GNU
| language              = English, multilingual ([[gettext]])
+
| language              = English, multilingual
 
| status                = Active
 
| status                = Active
| genre                  = [[Unix shell]]
+
| genre                  = Unix shell
| source model          = [[Free software]]
+
| source model          = Free software
| license                = [[GPLv3|GNU General Public License version 3]]
+
| license                = GPLv3
 
| website                = [http://www.gnu.org/software/bash/ Bash GNU project home page]
 
| website                = [http://www.gnu.org/software/bash/ Bash GNU project home page]
 
}}
 
}}
Строка 30: Строка 30:
  
 
Bash имеет много возможностей, которых не хватает в Bourne shell. Например, bash может выполнять вычисления с целыми числами без порождения внешних процессов. Bash упрощает перенаправление ввода/вывода способами, которые невозможны в традиционных шелах Борна. Например, Bash может перенаправить стандартный вывод (STDOUT) и  стандартная ошибка (STDERR) используя оператор <tt>&></tt>. Это проще напечатать, чем эквивалентная команда в  Bourne Shell '<tt>command > file 2>&1</tt>'.
 
Bash имеет много возможностей, которых не хватает в Bourne shell. Например, bash может выполнять вычисления с целыми числами без порождения внешних процессов. Bash упрощает перенаправление ввода/вывода способами, которые невозможны в традиционных шелах Борна. Например, Bash может перенаправить стандартный вывод (STDOUT) и  стандартная ошибка (STDERR) используя оператор <tt>&></tt>. Это проще напечатать, чем эквивалентная команда в  Bourne Shell '<tt>command > file 2>&1</tt>'.
 +
 
When using the 'function' keyword, Bash function declarations are not compatible with Bourne/Korn/POSIX scripts (the Korn shell has the same problem when using 'function'), but Bash accepts the same function declaration syntax as the Bourne and Korn shells, and is POSIX conformant.  Due to these and other differences, Bash shell scripts are rarely runnable under the Bourne or Korn shell interpreters unless deliberately written with that compatibility in mind, which is becoming less common as Linux becomes more widespread.  But in POSIX mode, Bash conformance with POSIX is nearly perfect.
 
When using the 'function' keyword, Bash function declarations are not compatible with Bourne/Korn/POSIX scripts (the Korn shell has the same problem when using 'function'), but Bash accepts the same function declaration syntax as the Bourne and Korn shells, and is POSIX conformant.  Due to these and other differences, Bash shell scripts are rarely runnable under the Bourne or Korn shell interpreters unless deliberately written with that compatibility in mind, which is becoming less common as Linux becomes more widespread.  But in POSIX mode, Bash conformance with POSIX is nearly perfect.
  
Bash supports [[here document]]s just as the Bourne shell always has. However, since version 2.05b Bash can redirect [[standard streams#Standard input (stdin)|standard input]] (stdin) from a "here string" using the <tt><<<</tt> operator.
+
Bash supports [[here document]]s just as the Bourne shell always has. However, since version 2.05b Bash can redirect standard input (stdin) from a "here string" using the <tt><<<</tt> operator.
  
Bash 3.0 supports in-process [[regular expression]] matching using a syntax reminiscent of [[Perl]].
+
Bash 3.0 supports in-process regular expression matching using a syntax reminiscent of Perl.
  
 
Bash 4.0 supports associative arrays allowing faked support for multi-dimensional arrays, in a similar way to awk:
 
Bash 4.0 supports associative arrays allowing faked support for multi-dimensional arrays, in a similar way to awk:
Строка 47: Строка 48:
 
===Brace expansion===
 
===Brace expansion===
  
Brace expansion, also called alternation, is a feature copied from the [[C shell]] that generates the set of alternative combinations. The generated results need not exist as files. The results of each expanded string are not sorted and left to right order is preserved:
+
Brace expansion, also called alternation, is a feature copied from the C shell that generates the set of alternative combinations. The generated results need not exist as files. The results of each expanded string are not sorted and left to right order is preserved:
  
 
<source lang="bash">
 
<source lang="bash">
Строка 68: Строка 69:
  
 
===Стартовые скрипты===
 
===Стартовые скрипты===
When Bash starts, it executes the commands in a variety of different scripts.
 
  
When Bash is invoked as an interactive login shell, it first reads and executes commands from the file <tt>/etc/profile</tt>, if that file exists. After reading that file, it looks for <tt>~/.bash_profile</tt>, <tt>~/.bash_login</tt>, and <tt>~/.profile</tt>, in that order, and reads and executes commands from the first one that exists and is readable.
+
Bash при запуске вызывает множество команд и различных скриптов.
 
+
Когда Bash вызывается как интерактивная оболочка, первым делом он читает и вызывает команды из файла {{Path|/etc/profile}}. После чтения этого файла, он смотрит следующие файлы в данном порядке: {{Path|~/.bash_profile}}, {{Path|~/.bash_login}}, и {{Path|~/.profile}}, читает и вызывает команды из них. При выходе Bash читает и выполняет команды из файла {{Path|~/.bash_logout}}.
When a login shell exits, Bash reads and executes commands from the file <tt>~/.bash_logout</tt>, if it exists.
+
Также Bash использует команды из файла {{Path|~/.bashrc}}. Это может быть отменено опцией ''--norc''. Опция ''--rcfile'' заставит Bash использовать команды из {{Path|~/.bashrc}}.
 
 
When an interactive shell that is not a login shell is started, Bash reads and executes commands from <tt>~/.bashrc</tt>, if that file exists. This may be inhibited by using the <tt>--norc</tt> option. The <tt>--rcfile file</tt> option will force Bash to read and execute commands from <tt>file</tt> instead of <tt>~/.bashrc</tt>.
 
 
 
Some versions of Unix have especially contorted system scripts for Bash which will effectively violate the documented script load order by loading scripts too early or attempting to combine Bash startup with the startup scripts for other shells in various ways.
 
 
 
===Portability===
 
Shell scripts written with  Bash-specific features (''bashisms'') will not function on a system using the Bourne shell or one of its replacements, unless Bash is also installed and the script begins with a "[[Shebang (Unix)|''shebang'']] ''line''" of ''#![[/bin]]/bash'' [[interpreter directive]] instead of ''#!/bin/sh''.
 
 
 
===Keyboard shortcuts===
 
The following shortcuts work when using default ([[Emacs]]) key bindings. [[Vim (text editor)|Vi]]-bindings can be enabled by running <code>set -o vi</code>.
 
 
 
{{See also|Readline}}
 
 
 
* {{Keypress|TAB}} : [[Autocomplete]]s from the cursor position.
 
* {{Keypress|Ctrl|a}} : moves the cursor to the line start (equivalent to the key {{keypress|[[home key|Home]]}}).
 
* {{Keypress|Ctrl|e}} : ([[wikt:end|end]]) moves the cursor to the line end (equivalent to the key {{keypress|[[end key|End]]}}).
 
* {{Keypress|Ctrl|p}} : ([[wikt:previous|previous]]) recalls the prior command (equivalent to the key {{keypress|[[arrow keys|Up]]}}).
 
* {{Keypress|Ctrl|n}} : ([[wikt:next|next]]) recalls the next command (equivalent to the key {{keypress|[[arrow keys|Down]]}}).
 
* {{Keypress|Ctrl|r}} : ([[wikt:research|research]]) recalls the last command including the specified character(s). A second {{keypress|Ctrl|r}} recalls the next anterior command which corresponds to the research
 
* {{Keypress|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 {{Keypress|Ctrl|q}} to return.
 
* {{Keypress|Ctrl|o}} : executes the found command from research.
 
* {{Keypress|Ctrl|l}} : clears the screen content (equivalent to the command <code>[[clear (Unix)|clear]]</code>).
 
* {{Keypress|Ctrl|u}} : clears the line content before the cursor and copies it into the [[clipboard (software)|clipboard]].
 
* {{Keypress|Ctrl|k}} : clears the line content after the cursor and copies it into the [[clipboard (software)|clipboard]].
 
* {{Keypress|Ctrl|w}} : clears the word before the cursor and copies it into the [[clipboard (software)|clipboard]].
 
* {{Keypress|Ctrl|y}} : ([[wikt:yank|yank]]) adds the [[clipboard (software)|clipboard]] content from the cursor position.
 
* {{Keypress|Ctrl|d}} : sends an EOF marker, which (unless disabled by an option) closes the current [[shell (computing)|shell]] (equivalent to the command <code>[[exit (command)|exit]]</code>). (Only if there is no text on the current line)
 
* {{Keypress|Ctrl|c}} : sends the signal [[SIGINT (POSIX)|SIGINT]] to the current task, which aborts and closes it.
 
* {{Keypress|Ctrl|z}} : sends the signal [[SIGTSTP]] to the current task, which suspends it. To execute it in background one can enter <code>bg</code>. To bring it back from background or suspension <code>fg ['process name or job id']</code> ([[wikt:foreground|foreground]]) can be issued.
 
* {{Keypress|Ctrl|x}} {{Keypress|Ctrl|x}} : (because x has a crossing shape) alternates the cursor with its old position.
 
* {{Keypress|Ctrl|x}} {{Keypress|Ctrl|e}} : edits the current line in the $EDITOR program, or [[vi]] if undefined.
 
* {{Keypress|Alt|f}} : ([[wikt:forward|forward]]) moves forward the cursor of one word.
 
* {{Keypress|Alt|b}} : ([[wikt:backward|backward]]) moves backward the cursor of one word.
 
* {{Keypress|Alt|Del}} : cuts the word before the cursor.
 
* {{Keypress|Alt|d}} : cuts the word after the cursor.
 
* {{Keypress|Alt|u}} : capitalizes every character from the cursor's position to the end of the current word.
 
* {{Keypress|Alt|l}} : lowers the case of every character from the cursor's position to the end of the current word.
 
* {{Keypress|Alt|c}} : capitalizes the character under the cursor and moves to the end of the word.
 
* {{Keypress|Alt|r}} : cancels the changes and put back the line as it was in the history.
 
  
 
==Комбинации клавиш==
 
==Комбинации клавиш==
Строка 157: Строка 118:
  
 
{{Key|'''ctrl+x,ctrl+v'''}} показать версию bash
 
{{Key|'''ctrl+x,ctrl+v'''}} показать версию bash
 +
 +
{{See also|Readline}} - библиотека, позволяющая выполнять редактирование в командной строке
  
 
== Ссылки ==
 
== Ссылки ==

Версия 07:11, 25 апреля 2011

Bash
Bash demo.png
Изображение bash и sh сессии
Автор Brian Fox
Первая версия 7, 1989; 34 years ago (1989-06-07)
Статус разработки Active
Написана на
ОС Cross-platform
Платформа GNU
Язык English, multilingual
Тип Unix shell
Лицензия GPLv3
Website Bash GNU project home page

Bash — это акроним от Bourne-again-shell, «ещё-одна-командная-оболочка-Борна». Название — игра слов: Bourne-shell — одна из популярных разновидностей командной оболочки для UNIX (sh), автором которой является Стивен Борн (1978), усовершенствована в 1987 году Брайаном Фоксом. Фамилия Bourne (Борн) перекликается с английским словом born, означающим «родившийся», отсюда: рождённая-вновь-командная оболочка.

Bash - это POSIX shell написанный в рамках проекта GNU. Является самым распространенным командным интерпретатором и используется по умолчанию в подавляющем количестве дистрибутивов GNU/Linux.

История

Фокс начал разработку Bash 10 января 1988 года, после того как Ричард Столлман стал недоволен отсутствием прогресса в разработке. Фокс выпустил первую бета-версию bash 0,99 7 июня 1989 года и был главным разработчиком с середины 1992 по середину 1994 года, затем был уволен из FSF и его ответственность перешла на Чета Рамей.

Features

Синтаксис bash является расширенным вариантом синтаксиса Bourne shell`a. Подавляющее большинство скриптов sh могут выполняться bash`ем без изменений. Bash включает в себя идеи ksh и csh такие как история команд, редактор командной строки, переменные $RANDOM, $PPID и $(…). При использовании в качестве интерактивной оболочки и двойном нажатии клавиши tab происходит автоматическое дополнение команд, имен файлов и переменных.

Bash имеет много возможностей, которых не хватает в Bourne shell. Например, bash может выполнять вычисления с целыми числами без порождения внешних процессов. Bash упрощает перенаправление ввода/вывода способами, которые невозможны в традиционных шелах Борна. Например, Bash может перенаправить стандартный вывод (STDOUT) и стандартная ошибка (STDERR) используя оператор &>. Это проще напечатать, чем эквивалентная команда в Bourne Shell 'command > file 2>&1'.

When using the 'function' keyword, Bash function declarations are not compatible with Bourne/Korn/POSIX scripts (the Korn shell has the same problem when using 'function'), but Bash accepts the same function declaration syntax as the Bourne and Korn shells, and is POSIX conformant. Due to these and other differences, Bash shell scripts are rarely runnable under the Bourne or Korn shell interpreters unless deliberately written with that compatibility in mind, which is becoming less common as Linux becomes more widespread. But in POSIX mode, Bash conformance with POSIX is nearly perfect.

Bash supports here documents just as the Bourne shell always has. However, since version 2.05b Bash can redirect standard input (stdin) from a "here string" using the <<< operator.

Bash 3.0 supports in-process regular expression matching using a syntax reminiscent of Perl.

Bash 4.0 supports associative arrays allowing faked support for multi-dimensional arrays, in a similar way to awk:

declare -A a         # declare an associative array 'a'
i=1; j=2             # initialize some indices
a[$i,$j]=5           # associate value "5" to key "$i,$j" (i.e. "1,2")
echo ${a[$i,$j]}     # print the stored value at key "$i,$j"

Brace expansion

Brace expansion, also called alternation, is a feature copied from the C shell that generates the set of alternative combinations. The generated results need not exist as files. The results of each expanded string are not sorted and left to right order is preserved:

echo a{p,c,d,b}e # ape ace ade abe
echo {a,b,c}{d,e,f} # ad ae af bd be bf cd ce cf

Brace expansions should not be used in portable shell scripts, because the Bourne shell will not produce the same output.

# A traditional shell does not produce the same output
echo a{p,c,d,b}e # a{p,c,d,b}e

When brace expansion is combined with wildcards, the braces are expanded first, then the resulting wildcards are substituted normally. Hence, a listing of JPEG and PNG images in the current directory could be obtained with:

ls *.{jpg,jpeg,png}    # expands to *.jpg *.jpeg *.png - after which,
                       # the wildcards are processed

Стартовые скрипты

Bash при запуске вызывает множество команд и различных скриптов. Когда Bash вызывается как интерактивная оболочка, первым делом он читает и вызывает команды из файла /etc/profile. После чтения этого файла, он смотрит следующие файлы в данном порядке: ~/.bash_profile, ~/.bash_login, и ~/.profile, читает и вызывает команды из них. При выходе Bash читает и выполняет команды из файла ~/.bash_logout. Также Bash использует команды из файла ~/.bashrc. Это может быть отменено опцией --norc. Опция --rcfile заставит Bash использовать команды из ~/.bashrc.

Комбинации клавиш

ctrl+u удалить все символы от курсора до начала строки

ctrl+k удалить все символы от курсора до конца строки

ctrl+w удалить слово перед курсором

ctrl+b переместить курсор на один символ влево

ctrl+f переместить курсор на один символ вправо

ctrl+t поменять местами символ слева от курсора и под курсором

ctrl+h удалить символ слева от курсора

ctrl+a переместить курсор в начало строки

ctrl+e переместить курсор в конец строки

ctrl+p предыдущая команда в истории bash

ctrl+n следующая команда в истории bash

ctrl+r реверсивный поиск команд в истории bash

ctrl+y вставляет последнюю удаленную с помощью ctrl+u или ctrl+k строку

ctrl+m выполнение команды, аналог [Enter]

ctrl+o выполняет команду, при этом оставляя ее в командной строке для дальнейшего использования.

ctrl+l очистить экран

ctrl+s стоп режим. Блокирует вывод на консоль. При этом все данные отображенные на экране остаются не измененными.

Tab+Tab выводит список команд. При наличии какого нибудь символа(-ов) выводит команды по введенным символам.

ctrl+q выход из стоп-режима.

ctrl+d выйти из терминала

ctrl+c отменить последнюю введенную команду

ctrl+x,ctrl+v показать версию bash

- библиотека, позволяющая выполнять редактирование в командной строке

Ссылки

Bash