跳转至

Linux CMD:quick actions

find

more in blog

find . -type f -size +10M -exec rm -rf {} \;
  1. {} is a placeholder that is used to hold results given by the find command.
  2. \; says that for each found result, the [command] is executed

sed , awk

需要进一步的研究学习

暂无

遇到的问题

暂无

开题缘由、总结、反思、吐槽~~

参考文献

上面回答部分来自ChatGPT-3.5,没有进行正确性的交叉校验。