I have a command in SSH
on the Magento platform (installed on an Apache server) to delete the contents of the rm -rf path/to/folder/*
cache folder but I'm not really sure for sure what -rf
means.
I have a command in SSH
on the Magento platform (installed on an Apache server) to delete the contents of the rm -rf path/to/folder/*
cache folder but I'm not really sure for sure what -rf
means.
With a little more research I found the following:
% w / remove / delete :
src: link
-r
recursive mode, that is, remove the folder and subfolders and
-f
remove forced mode, without prompting the user
This command should be used carefully, it can damage the entire system.