I developed and maintain a ruby gem called Githug and I am trying to write an automated test script for it. Githug basically manipulates a directory to put it into differen
Wrong shebang:
#! /bin/sh
When it shall be a bash script, use
#! /bin/bash
Bash has a buildin echo, which isn't 100% identic with /bin/echo.