gpt4 book ai didi

linux - shell脚本终止程序但不终止脚本本身

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

我正在使用 shell 脚本自动搜索网络接入点,在 airodump 中使用 ctrl + c 停止搜索,我希望它取消搜索但保持我的 shell 脚本运行。因为我想在搜索完 wifi 网络后进行用户输入。我尝试使用 trap,它停止了 airodump 和我的脚本。

我只是想停止 airodump wifi 搜索并转到用户输入的 shell 脚本。

最佳答案

我不太清楚,但我相信您希望用户能够通过 ctrl-C 以交互方式停止搜索,然后提示输入。这应该做到这一点:

#!/bin/sh

trap 'test "$airo" && kill -2 $airo' 2
airodump ... &
airo=$!
wait
unset airo

# Commands here will execute after the user hits ctrl-C to terminate the search

关于linux - shell脚本终止程序但不终止脚本本身,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14968269/

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