#!/bin/bash echo -n please enter a file to see if it is older than etc/passwd read file if test $file -nt /etc/passwd then echo yay else echo nay fi