i write bash file to do a certain event .... now i want to creat log file to record date of executing bash file and result of execute it "exit code" ??

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
echo "[$(date +%c)] Process exited with result code: $?" >> /var/log/something.log

Feel free to change +%c with something else appropriate. See the date(1) man page for details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.