I'm working on porting bash script to SUS/POSIX-compliant shells. I was able to remove most of bashisms myself but I'm currently stuck with last one.
The script is for generating crontab based on files in cron.d directory, and it uses '-nt' test to check whether any of input files has changed since last time the crontab was generated.
Can anyone suggest a nice, SUS-compliant replacement of the '-nt' check using only shell utilities mentioned in that spec?