I have a script that write into a file two datetime of two server. This script is launched every minute but the second stored is not always the same.
Ex:
2015-12-16 0:16:01.864 2015-12-16 0:16:01.972
2015-12-16 0:17:01.241 2015-12-16 0:17:01.350
2015-12-16 0:18:01.626 2015-12-16 0:18:01.735
2015-12-16 0:19:02.102 2015-12-16 0:19:02.210
As you can see the fourth line is written with the 02 second and not the 01.
in crontab i have this situation:
* * * * * root cd /home/Project; ./PollDateServer.sh >/dev/null 2>&1
Thank you