Monday, May 21, 2018

REMOVE 1 HOUR OLD FILE BY SHELL SCRIPT ON LINUX



find /var/www/proximity_upload_server_php/web/upload/proximity/*.csv  -type f -cmin +60 -delete

No comments:

How to solve mysql ERROR 1118 (42000) Row size too large

  I had this issue with MYSQL 5.7 . The following worked althoug...