find . -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort
#!/bin/bash ls -lrt | grep ^- | awk 'END{print $NF}'
NOTE: This lists either the last updated or created file in your current working directory.