ubuntu下如何自动删除文件夹中的文件?
如何自动将文件删除到 ubuntu 中的文件夹?
我需要编写一个脚本来从服务器上充满进程执行的文件夹中删除文件。
How to automatic deleting files to a folder in ubuntu?
I need to do a script to delete files from a folder that is filled with the execution of a process on my server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正确的命令是 rm -rffolder/ ,用于从该特定文件夹中递归删除文件。
The proper command would be
rm -rf folder/
to delete files recursively from that particular folder.如果
rmfolder/*
不是您寻求的答案,您能澄清一下您的问题吗?If
rm folder/*
isn't the answer you seek, could you clarify your question?