i want to find every log file named 开发者_高级运维'justjoe_log', on an apache server. I want to delete them all. how do i do it ?
locate justjoe_log|xargs rm -rf
You may want to just do locate first to avoid deleting data unintentionally.
i want to find every log file named 开发者_高级运维'justjoe_log', on an apache server. I want to delete them all. how do i do it ?
locate justjoe_log|xargs rm -rf
You may want to just do locate first to avoid deleting data unintentionally.
精彩评论