本文介绍了Bash文件创建?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 亲爱的, 我是Linux世界的新手,我需要创建一个包含以下命令的Bash文件。 #!/ bin / sh find / path / to / folder / toclean -mtime +5 -type f -maxdepth 3 - exec rm -f {} \; 我该怎么办? 谢谢。 将标题改为普通套管[/编辑] Dear all,I am new in the Linux world and I need to create a Bash file conatining the below command.#!/bin/shfind /path/to/folder/toclean -mtime +5 -type f -maxdepth 3 -exec rm -f {} \;How do I that?Thanks. changed title to normal casing [/Edit]推荐答案 这篇关于Bash文件创建?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-30 05:38