3

We can find help regarding most commands like echo ,cp, mv, wget using man .

But can I find manuals for special characters used for operations like piping(| symbol)? If there's none, is there any official documentation on this?

2
  • 1
    Something like Shell command language ? Commented Sep 2, 2017 at 23:27
  • Yes. I mean symbols used in shell. I didn't mentioned it clearly in my question. Commented Sep 3, 2017 at 10:36

1 Answer 1

5

No, because these special characters all belong to induvidual, different programs.

Although many of them have similar meanings, it can sometimes - at least a little bit - differ. For example, \ has the same effect in a bash command line, as in a grep, but it escapes different things.

To get the list of the meanings of the special characters, you have to find them the corresponding manual pages (or other documentations).

As you are likely learning the Linux command line, you will most likely find special characters in

  • bash
  • grep
  • awk
  • sed

programs.

It could be useful to read also the meaning of the special characters in regular expression (google for "regexp tutorial").

1
  • 1
    "...As you are likely learning the Linux command line..." - A very good guess.Yes, I'm learning linux. I'll check regexp tutorials. Commented Sep 3, 2017 at 10:43

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.