About 425,000 results
Open links in new tab
  1. shell - Difference between sh and Bash - Stack Overflow

    1919 When writing shell programs, we often use /bin/sh and /bin/bash. I usually use bash, but I don't know what's the difference between them. What's the main difference between Bash and …

  2. Are Bash and Linux shell the same? - Stack Overflow

    Jan 13, 2010 · No, they are not the same, and yes, linux shell programming books should have significant portions or be entirely about bash scripting. Ubuntu is a distribution of linux which …

  3. What's the difference between the terms "Shell" and "Bash"?

    Bash is a specific example of a command-line shell, and is probably one of the most well-known ones, being the default in many Linux distributions as well as OS X. It was designed as a …

  4. What is the difference b/w Bash and Shell script

    Aug 13, 2015 · A "shell script" is a term describing .. well, "some script" that can be interpreted/run by "a shell'. Normally an 'sh'-derived (Bourne-shell like) shell. Bash is a specific …

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

    Nov 30, 2014 · In practice, however, "shell script" and "bash script" are often used interchangeably, unless the shell in question is not Bash. EDIT: Actually, the default scripting …

  6. What is the difference between #!/bin/sh and #!/bin/bash?

    May 25, 2012 · A script may specify #!/bin/bash on the first line, meaning that the script should always be run with bash, rather than another shell. /bin/sh is an executable representing the …

  7. What's the difference between [ and [[ in Bash? - Stack Overflow

    Make sure you have the #!/bin/bash shebang line for your script if you use double brackets. See also Bash FAQ - "What is the difference between test, [ and [ [ ?" Bash Practices - Bash Tests …

  8. shell - Bash/sh - difference between && and ; - Stack Overflow

    May 27, 2011 · I normally use ; to combine more than one command in a line, but some people prefer &&. Is there any difference? For example, cd ~; cd - and cd ~ && cd …

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

    399 What is the difference between =, == and -eq in shell scripting? Is there any difference between the following?

  10. bash - Change the default terminal in Visual Studio Code - Stack …

    Jun 8, 2017 · I am using Visual Studio Code on my Windows 10 PC. I want to change my default terminal from Windows PowerShell to Bash on Ubuntu (on Windows). How can I do that?