浏览代码

Add 'Bash.md'

Kristofer Younger 8 年前
父节点
当前提交
c988813786
共有 1 个文件被更改,包括 22 次插入0 次删除
  1. 22
    0
      Bash.md

+ 22
- 0
Bash.md 查看文件

@@ -0,0 +1,22 @@
1
+# Stuff you should know about `bash`
2
+
3
+## Bash
4
+* Original author(s)	Brian Fox
5
+* Initial release	June 8, 1989; 28 years ago
6
+* Stable release	4.4.18 / January 30, 2018; 56 days ago[1]
7
+* Repository	https://git.savannah.gnu.org/cgit/bash.git
8
+* Wikipedia [Bash_(Unix_shell)](https://en.wikipedia.org/wiki/Bash_(Unix_shell))
9
+* Written in	C
10
+* Operating system	Unix-like, macOS (system includes an older GNU GPL v2 version); current version available through third parties, Windows (newer GNU GPL v3+ version)
11
+* Platform	GNU
12
+* Available in	Multilingual (gettext)
13
+* Type	Unix shell, command language
14
+* License	GNU GPL v3+[6]
15
+* Website	www.gnu.org/software/bash/
16
+
17
+Bash is a Unix shell and command language written by Brian Fox for the GNU Project as a free software replacement for the Bourne shell. First released in 1989, it has been distributed widely as the default login shell for most Linux distributions and Apple's macOS (formerly OS X). A version is also available for Windows 10.
18
+
19
+Bash is a command processor that typically runs in a text window, where the user types commands that cause actions. Bash can also read and execute commands from a file, called a shell script. Like all Unix shells, it supports filename globbing (wildcard matching), piping, here documents, command substitution, variables, and control structures for condition-testing and iteration. The keywords, syntax and other basic features of the language are all copied from sh. Other features, e.g., history, are copied from csh and ksh. Bash is a POSIX-compliant shell, but with a number of extensions.
20
+
21
+The shell's name is an acronym for Bourne-again shell, a pun on the name of the Bourne shell that it replaces and on the common term "born again".
22
+