About 2,590,000 results
Open links in new tab
  1. bash - Shell equality operators (=, ==, -eq) - Stack Overflow

    Shell equality operators (=, ==, -eq) Asked 11 years, 10 months ago Modified 3 years, 5 months ago Viewed 644k times

  2. What are the special dollar sign shell variables? - Stack Overflow

    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 …

  3. shell - How to concatenate string variables in Bash - Stack Overflow

    Nov 15, 2010 · A bashism is a shell feature which is only supported in bash and certain other more advanced shells. It will not work under busybox sh or dash (which is /bin/sh on a lot of …

  4. error in unix shell script - Unix & Linux Stack Exchange

    You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I …

  5. Difference between Login Shell and Non-Login Shell?

    May 8, 2012 · I understand the basic difference between an interactive shell and a non-interactive shell. But what exactly differentiates a login shell from a non-login shell? Can you give …

  6. Running multiple commands in one line in shell - Stack Overflow

    Feb 27, 2011 · There is a variation of running multiple commands in one line in the shell where you want them to run simultaneously rather than one after the other. The OP was interested in …

  7. shell - How can I compare numbers in Bash? - Stack Overflow

    You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I …

  8. How do I get into a Docker container's shell? - Stack Overflow

    May 11, 2015 · docker debug <container or image> It allows you to get a shell (bash/fish/zsh) into any container. It also works for stopped containers and images. Essentially it's a replacement …

  9. How do I pause my shell script for a second before continuing?

    Feb 7, 2014 · How do I pause my shell script for a second before continuing? Asked 11 years, 8 months ago Modified 2 months ago Viewed 1.8m times

  10. shell - How to mkdir only if a directory does not already exist ...

    I am writing a shell script to run under the KornShell (ksh) on AIX. I would like to use the mkdir command to create a directory. But the directory may already exist, in which case I do not …