in reply to Using perl to speed up a series of bash commands by transforming them into a single command that will run everything in parallel.

The title of your post and your variable names refer to the use of bash, but you're using sh.
  • Comment on Re: Using perl to speed up a series of bash commands by transforming them into a single command that will run everything in parallel.
  • Select or Download Code

Replies are listed 'Best First'.
Re^2: Using perl to speed up a series of bash commands by transforming them into a single command that will run everything in parallel.
by hossman (Prior) on Jun 09, 2006 at 23:01 UTC

    On many systems I see now a days, /bin/sh is a symlink to /bin/bash ... there are a lot of people in the world who don't know there use to be a simple shell called 'sh' that didn't have all of bash's bells and whistles.

      Doesn't bash behave differently when called as sh? I seem to recall that from a long time ago. On my system bash and sh are different.
      Are you perhaps seeing mostly Linux systems? All major Linux distros seem to link /bin/sh to /bin/bash, as you said, but I haven't seen that very often outside the Linux realm. e.g., HP-UX doesn't install bash at all by default and instead has ksh as its standard shell.