Hi,
I am very new to linux and I can't figure out why my script cannot run from a different file location. I think I am missing something in my script, but I am not sure. Here is what I have so far.
#!/bin/bash/home/cs2165/cs216523
while true
do
echo "$(date)" |tee -a mylog1
echo "meeting at"; date '+%H:%M'
sleep 5
done
I recently added home/cs2165/cs216523 because I thought that was need to run my script from that location.
Please help.