What operating system?
[tt]DateFinish=`date '+"20%y/%m/%d 23:59 GMT"' --date "1 day"`[/tt]
Should do it on Linux or anything with a recent GNU date utility.
Otherwise, perhaps a quick C programme:
[tt]#include <sys/types.h>
#include <time.h>
struct tm *tm_thetime;
time_t thetime;
char cbuf[1024];
int main(void) {
time(&thetime);
tm_thetime = localtime(&thetime);
tm_thetime->tm_mday++;
mktime((struct tm *)&tm_thetime);
strftime(cbuf,1024,"%y/%m/%d",tm_thetime);
printf("%s\n",cbuf);
}[/tt] Annihilannic.