Skip to content

Instantly share code, notes, and snippets.

View khalid-s's full-sized avatar

Khalid Sookia khalid-s

  • iKNSA
  • Paris, France
View GitHub Profile
@khalid-s
khalid-s / clear-symfony-cache.sh
Created June 27, 2016 18:16
A small bash to clear symfony cache regularly on a unix based system. This can be coupled with crontab and you can configure the delay and path to folder
#!/bin/bash
delay=1 #In minutes
folderToManage=var/cache/**/*
find $folderToManage -type f -mmin +$delay -delete
find . -empty -type d -delete