Last active
September 11, 2017 18:42
-
-
Save iamakimmer/c95fc80a1cb6f476142e420d9e07358a to your computer and use it in GitHub Desktop.
SMU delete old session files #JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#delete sessions older than 90 days in public_html folder | |
find var/session/* -mtime +90 -exec rm {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment