Ralf Mardorf <ralf.mard...@alice-dsl.net> wrote: > month=$(date +%B) > mon=$(date +%b) > d_y_t=$(date '+/%d/%Y %T') > done=$(date +%s)
You've got a horrible race condition in there just waiting to bite you. Try this instead: done=$(date +%s) month=$(date --date @$done +%B) mon=$(date --date @$done +%b) d_y_t=$(date --date @$done +'/%d/%Y %T') Chris -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/7ud4m9xtms....@news.roaima.co.uk