Hi everyone,
I'm looking to complete my Bash script to find multiples files,
then find the last modified one and copy/overwrite it to others locations..
Here's my first attempt .. I can handle the result with php this far, but wanne complete it in order to cronjob update of script serverwide
find /var/www/ -type f -iregex '.*PIE\.htc' -printf '%T@ %p %s\n'|sort -r -n
thanks

