I programmed a small installation program in sh.
code:
#!/bin/sh
echo $ 1
if [ "$1" ! = "install"];
then
echo "Why not install?
else
echo "Installing ..."
fi
And throws an error:
install
[: 10: missing ]
Installing …
EDIT: Rolled back incoperation of answers into question.
should be