#!/bin/bash echo here we go on testing for a command line parameter #this tests for an integer #if test $1 -eq 7 #this tests for a string if test $1 = 7 then echo It\'s here and it\'s a $1 else echo It\'s not here but it\'s a $1 fi