Quote:
Originally Posted by nabmufti
[code]:
#!/bin/bash
alarmfile= `cat ~/alkatel.txt`
|
not sure if intended or accidental but remove that space between = and `
#!/bin/bash
set -x
#alarmfile= `cat ~/alkatel.txt`
alarmfile=`cat ~/alkatel.txt`
also in your scripts you might add "set -x" to see the commands as they run to help debugging