gpt4 book ai didi

bash - 可移植地过滤掉无效的 PID

转载 作者:行者123 更新时间:2023-12-04 00:56:02 25 4
gpt4 key购买 nike

我写了一个脚本来获取顶级 session PID,即 session 启动器,它可能是 bash、dash、ksh 甚至 systemd 之类的 shell。该脚本可能会获得一个 PID 作为初始参数,但是我需要对其进行过滤以检查它是否是一个有效的整数,而不是像 34fg45-5467 这样的东西,我不知道希望它以零开头,例如 05467

这是脚本的一个片段。

if [ "$1" != "" ]; then
if [[ "$1" == [1-9]*([0-9]) ]]; then <- Check for Integer; error here in non bash shell
if ps -p $1 -o "pid=" >/dev/null 2>&1; then
pid=$1
else
echo "PID $1, no such process." >&2
exit 1
fi
else
echo "Invalid pid." >&2
exit 1
fi
else
pid=$$
fi

代码在 bash 中运行,但在 dash 上运行失败并出现语法错误:

./tspid: 16: ./tspid: Syntax error: "(" unexpected (expecting "then")

据我了解

if [[ "$1"=~ ^[0-9][1-9]*$ ]]; 使用 =~ 进行正则表达式匹配,并且
if [[ "$1"== [1-9]*([0-9]) ]]; 使用 == 进行模式匹配

  1. 对吗?
  2. 如何将上述表达式转换为在非 bash 和 bash shell 中运行?

最佳答案

使用case conditional construct .每个 POSIX shell 都有它,与双括号不同,它看起来并不可怕。

# make sure 0-9 is literally 0 to 9
LC_COLLATE=C
# assume set -u is not in effect or $1 is set
case $1 in
('')
# handle empty argument
;;
(0*|*[!0-9]*)
# handle invalid PID (0, 042, 42a, etc.)
;;
(*)
# handle valid PID
;;
esac
# restore LC_COLLATE if necessary

关于bash - 可移植地过滤掉无效的 PID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62493652/

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