source: OpenRLabs-Git/web2py/applications/rlabs/scripts/clear_fs_sessions.sh

main
Last change on this file was d466a97, checked in by David Fuertes <dfuertes@…>, 4 years ago

Añadido scripts a repo

  • Property mode set to 100755
File size: 119 bytes
Line 
1#!/bin/bash
2
3for i in $(find /var/www/web2py/applications/rlabs/sessions/ -type d -mtime +1); do
4       rm -fr $i
5done
Note: See TracBrowser for help on using the repository browser.