编写一个shell脚本。功能为遍历当前文件夹下所有子文件夹。并找出子文件夹中是否有cmd.sh的脚本。如果有,就进入到当前目录。执行sh cmd.sh。在执行其他文件夹中的cmd.sh 。注意 eureka 和config 文件夹最先进行执行, 执行完等待五秒,eureka和config文件夹执行完毕后,其他文件夹按顺序执行等待2秒
时间: 2023-08-14 19:07:44 浏览: 81
以下是一个实现该功能的shell脚本:
```bash
#!/bin/bash
# 遍历当前文件夹下的所有子文件夹
for dir in $(find . -type d); do
# 判断子文件夹中是否有cmd.sh脚本
if [ -f "$dir/cmd.sh" ]; then
# 进入到子文件夹
cd "$dir"
# 执行cmd.sh脚本
sh cmd.sh
# 判断是否为eureka或config文件夹
if [ "$dir" == "./eureka" ] || [ "$dir" == "./config" ]; then
# 等待5秒
sleep 5
else
# 等待2秒
sleep 2
fi
# 返回到上级文件夹
cd ..
fi
done
```
该脚本与前面的脚本的主要区别在于等待时间的判断。在执行完每个脚本后,根据文件夹的名称进行等待时间的判断,并返回到上级文件夹继续遍历。其中,当前文件夹中的`eureka`和`config`文件夹会等待5秒,其他文件夹则等待2秒。
相关问题
编写一个shell脚本,遍历当前文件夹下的所有文件。如果子文件夹下包含cmd.sh 就执行 sh cmd.sh
你可以使用以下 Shell 脚本来实现你的需求:
```bash
#!/bin/bash
# 遍历当前文件夹下所有文件和子文件夹
for file in $(find . -type f); do
# 如果子文件夹下包含 cmd.sh,则执行 sh cmd.sh
if [[ $file == */cmd.sh ]]; then
sh $file
fi
done
```
这个脚本会使用 `find` 命令遍历当前文件夹下的所有文件和子文件夹。对于每个找到的文件,如果它的路径包含 `/cmd.sh`,则执行 `sh cmd.sh` 命令。请注意,此脚本假定当前文件夹下没有空格或其他特殊字符的文件名。如果有这样的文件名,你需要修改脚本以正确处理它们。
编写一个shell脚本,遍历当前文件夹下的所有文件。如果子文件夹下包含cmd.sh 就执行 sh cmd.sh。 a文件夹和b文件夹优先执行
你可以使用以下 Shell 脚本来实现你的需求:
```bash
#!/bin/bash
# 遍历 a 文件夹下所有文件和子文件夹,执行 cmd.sh
for file in $(find ./a -type f); do
if [[ $file == */cmd.sh ]]; then
sh $file
fi
done
# 遍历 b 文件夹下所有文件和子文件夹,执行 cmd.sh
for file in $(find ./b -type f); do
if [[ $file == */cmd.sh ]]; then
sh $file
fi
done
# 遍历其他文件夹下所有文件和子文件夹,执行 cmd.sh
for file in $(find . -type f); do
if [[ $file == */cmd.sh && $file != */a/* && $file != */b/* ]]; then
sh $file
fi
done
```
这个脚本会先遍历 `a` 文件夹下的所有文件和子文件夹,对于每个找到的文件,如果它的路径包含 `/cmd.sh`,则执行 `sh cmd.sh` 命令。然后它会遍历 `b` 文件夹下的所有文件和子文件夹,执行同样的操作。最后,它会遍历其他文件夹下的所有文件和子文件夹,对于每个找到的文件,如果它的路径包含 `/cmd.sh` 且不在 `a` 或 `b` 文件夹中,就执行 `sh cmd.sh` 命令。请注意,这个脚本同样假定当前文件夹下没有空格或其他特殊字符的文件名。如果有这样的文件名,你需要修改脚本以正确处理它们。
阅读全文