-
Updated
May 9, 2020 - HTML
Bash
Bash (Bourne Again Shell) is a shell and command language interpreter for the GNU operating system. It is meant to be an improved version of Bourne Shell.
Here are 130 public repositories matching this topic...
Describes who should read it, what you will learn, and any pre-requisites. Make each section header in the TOC a link to the overview.
-
Updated
Mar 12, 2020 - HTML
-
Updated
Dec 9, 2019 - HTML
-
What does having some of the outputs in parentheses mean?
-
I really think this table would benefit from some quick links to each tool, or a tool-tip for each tool - something that just reminds the reader what each one does. Perhaps also some examples too. And one more suggestion would be to include sample output when you show a sample command-line - helps me to understand better what the com
-
Updated
May 13, 2020 - HTML
A help message for the fields of the table.
-
Updated
Apr 12, 2020 - HTML
-
Updated
May 7, 2020 - HTML
-
Updated
Dec 27, 2018 - HTML
-
Updated
Dec 28, 2018 - HTML
Do this after cgi-bin is working and mdsh can build pages with some kind of bash-cgi stuff: sc0ttj/mdsh#34
See: https://github.com/micha/resty
Source the script before using it.
$ . restyOnce resty is installed, set your REST host to which you will be making your requests.
$ resty http://127.0.0.1:8080/data
http://127.0.0.-
Updated
May 17, 2017 - HTML
-
Updated
Jun 29, 2018 - HTML
-
Updated
Mar 31, 2020 - HTML
-
Updated
Sep 21, 2017 - HTML
-
Updated
May 19, 2018 - HTML
-
Updated
May 18, 2020 - HTML
Created by Brian Fox
Released June 8, 1989
- Repository
- gitGNU/gnu_bash
- Website
- www.gnu.org/software/bash
- Wikipedia
- Wikipedia
The opening code example is given as:
$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr2 foo1 bar$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |but should be:
$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr2 foo1 bar$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |-e switch is required for interpolating escaped \n. Without it, the example