gpt4 book ai didi

linux - 在 while 循环中退出 bash 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 09:19:34 25 4
gpt4 key购买 nike

如何从 find 管道 while 循环中退出脚本?

例如以下 exit 只是退出管道子 shell:

find some_directory -type d|while read dir_name; do
if [ -w "$dir_name" ]; then
exit 1
fi
done

最佳答案

您可以检查管道的返回状态:

if ! find some_directory -type d|while read dir_name; do
if [ -w "$dir_name" ]; then
exit 1
fi
done; then exit 1; fi

或者,更简单地说:

 find some_directory -type d|while read dir_name; do
[ -w "$dir_name" ] && exit 1
done || exit 1

关于linux - 在 while 循环中退出 bash 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43483661/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com