#!/usr/bin/sh
print "\nChecking for Password lock file"
if [[ -f /etc/passwd.dtmp ]]
then
  print "Password lock file exists! How old is it?"
  ll /etc/passwd.dtmp
  print "If it is more than an hour old, delete it!"
fi
print "\nDone checking for Password lock file\n" 
