Skip to content
#

Bash

bash logo

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...

julianhatwell
julianhatwell commented Mar 8, 2020

The opening code example is given as:

$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr
2 foo
1 bar
$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |

but should be:

$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr
2 foo
1 bar
$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |

-e switch is required for interpolating escaped \n. Without it, the example

pocc
pocc commented Sep 14, 2019
  • 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

Developer-Platform

✳️ PTSource Developer Platform is a free professional IDE, Source Code Editor and Compiler, tools, templates and libs for professionals and students. It offers many powerful features for programming languages and syntax highlighing for over 100 languages.

  • Updated May 7, 2020
  • HTML

Created by Brian Fox

Released June 8, 1989

Repository
gitGNU/gnu_bash
Website
www.gnu.org/software/bash
Wikipedia
Wikipedia

Related Topics

shell
You can’t perform that action at this time.