写一个shell脚本
时间: 2023-06-29 18:19:19 浏览: 50
好的,我可以帮你写一个简单的shell脚本。下面是一个例子,用于在指定目录下查找包含关键字的文件:
```
#!/bin/bash
# 设置查找目录和关键字
directory="/path/to/directory"
keyword="hello world"
# 使用find命令查找包含关键字的文件
find "$directory" -type f -name "*" -exec grep -l "$keyword" {} \;
```
这个脚本会在指定目录下递归查找所有文件,如果文件包含关键字,则输出该文件的路径。你可以将脚本保存为一个文件,比如search.sh,然后在终端中执行:
```
$ chmod +x search.sh
$ ./search.sh
```
注意,你需要将脚本中的`/path/to/directory`和`hello world`替换为你自己的查找目录和关键字。
阅读全文