If you are editing multiple files on remote server and then you need to produce a release list, e.g. list of modified files, use this
find . -type f -printf '%T@ %P\n' | sort -n | awk '{print $2}'
You will get the latest files at the bottom of produced list.