gpt4 book ai didi

unix - 检查 UNIX shell 中的变量是否为数字

转载 作者:行者123 更新时间:2023-12-03 01:25:42 24 4
gpt4 key购买 nike

如何在 UNIX shell 中检查变量是否为数字或包含数字?

最佳答案

if echo $var | egrep -q '^[0-9]+$'; then
# $var is a number
else
# $var is not a number
fi

关于unix - 检查 UNIX shell 中的变量是否为数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/309745/

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