Home Coding Delete files FAST in Linux

Delete files FAST in Linux

by Ben

1 of my magento sites built up too many files in var/sessions and deleting through rm will cause it to show the following error:-

Argument list too long.

And stumble upon this post that can delete files fast and it works!

find . -type f -delete

You may also like

Leave a Comment