bobbingwide / oik-shortcodes

Shortcode, block and API server
https://www.oik-plugins.com/oik-plugins/oik-shortcode-server/
GNU General Public License v2.0
1 stars 0 forks source link

Delete temporary files starting oikscloa from the /tmp folder to avoid getting disk full #79

Open bobbingwide opened 4 years ago

bobbingwide commented 4 years ago

When code is parsed temporary files are created in the /tmp folder ( on Linux ). These are not being deleted so the disk fills up over time. These files can be safely deleted when the parsing has worked correctly.

bobbingwide commented 4 years ago

Workaround

cd /tmp
rm -f oikscloa*

or, if there are too many files

find /tmp -name oiksc* -type f -print | xargs /bin/rm -f