About 2,510,000 results
Open links in new tab
  1. bash - What is the purpose of "&&" in a shell command? - Stack …

    Oct 27, 2021 · $ command one && command two the intent is to execute the command that follows the && only if the first command is successful. This is idiomatic of Posix shells, and not …

  2. bash - Shell equality operators (=, ==, -eq) - Stack Overflow

    If not quoted, it is a pattern match! (From the Bash man page: "Any part of the pattern may be quoted to force it to be matched as a string."). Here in Bash, the two statements yielding "yes" …

  3. Difference between ${} and $() in Bash - Stack Overflow

    I have two questions and could use some help understanding them. What is the difference between ${} and $()? I understand that () means running command in separate shell and …

  4. What's the difference between <<, <<< and < < in bash?

    Sep 27, 2015 · What's the difference between <<, <<< and < < in bash?Here document << is known as here-document structure. You let the program know what will be the ending text, and …

  5. An "and" operator for an "if" statement in Bash - Stack Overflow

    Modern shells such as Bash and Zsh have inherited this construct from Ksh, but it is not part of the POSIX specification. If you're in an environment where you have to be strictly POSIX …

  6. How to compare strings in Bash - Stack Overflow

    Feb 10, 2010 · How do I compare a variable to a string (and do something if they match)?

  7. shell - What does "-ne" mean in bash? - Stack Overflow

    Jul 17, 2013 · It doesn't mean anything "in bash". [ runs a command called test. -ne is an argument to the test command, not to bash, and you can find its documentation in man test.

  8. What's the meaning of the parameter -e for bash shell command …

    123 I have as bash shell script with header #!/bin/bash -e. When I run the script, it will be interrupted after the grep command runs, but when I remove the parameter -e, then the script …

  9. How to increment a variable in bash? - Ask Ubuntu

    Jan 30, 2017 · #!/bin/bash # To focus exclusively on the performance of each type of increment # statement, we should exclude bash performing while loops from the # performance measure.

  10. sh - [: missing `]' in bash script - Stack Overflow

    Feb 9, 2016 · The double-brace keyword is a bash expression, and will not work with other POSIX shells, but it has some benefits, as well, such as being able to do these kinds of operations …