About 1,830,000 results
Open links in new tab
  1. Is bash a programming language? - Stack Overflow

    Feb 24, 2015 · According to man bash, Bash is a "sh-compatible command language". Then, we can say a "command language" is "a programming language through which a user communicates with …

  2. if statement - Bash - what's the use of "fi ;;"? - Stack Overflow

    Bash - what's the use of "fi ;;"? Asked 14 years, 4 months ago Modified 8 years, 9 months ago Viewed 180k times

  3. bash - What are the special dollar sign shell variables ... - Stack ...

    Sep 14, 2012 · $! is the PID of the most recent background command. $0 is the name of the shell or shell script. Most of the above can be found under Special Parameters in the Bash Reference …

  4. How do I use Bash on Windows from the Visual Studio Code integrated ...

    Mar 5, 2017 · Visual Studio Code on Windows uses PowerShell by default as the integrated terminal. If you want to use Bash from Visual Studio Code, what steps should be followed?

  5. linux - What does $@ mean in a shell script? - Stack Overflow

    Apr 3, 2012 · What does a dollar sign followed by an at-sign (@) mean in a shell script? For example: umbrella_corp_options $@

  6. command line - What is meant by "bash"? - Ask Ubuntu

    Bash is largely compatible with sh and incorporates useful features from the Korn shell ksh and the C shell csh. It is intended to be a conformant implementation of the IEEE POSIX Shell and Tools …

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

    531 = and == are for string comparisons -eq is for numeric comparisons -eq is in the same family as -lt, -le, -gt, -ge, and -ne == is specific to bash (not present in sh (Bourne shell), ...). Using POSIX = is …

  8. bash - How do I create an array in Unix shell scripting ... - Stack ...

    Dec 10, 2009 · To clarify the above comment, the issue with the question is that there is no such thing as "Unix shell [scripting]". Instead, there are multiple shells, with a POSIX-compatible one being kind …

  9. Is bash scripting the same as shell scripting? - Ask Ubuntu

    Nov 30, 2014 · So, when someone talks about bash scripting, he's using a shell, but when someone is talking about shell scripting, he isn't per se using bash. But as bash is commonly used in scripting for …

  10. What is a simple explanation for how pipes work in Bash?

    Mar 23, 2012 · In fact Stevens agrees with you in Advanced Programming in the Unix Environment by stating that "a pipe in a single process is next to useless". After all, pipes are a mechanism for inter …