Skip to content

Instantly share code, notes, and snippets.

@mehdichaouch
Created July 26, 2016 09:05
Show Gist options
  • Save mehdichaouch/0431b52ad112c3c0120554d086e77375 to your computer and use it in GitHub Desktop.
Save mehdichaouch/0431b52ad112c3c0120554d086e77375 to your computer and use it in GitHub Desktop.
Symfony2 clear cache without sessions
#!/bin/bash
find ./var/cache/* -not \( -path "./var/cache/sessions" -prune \) -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment