gpt4 book ai didi

linux - sh脚本访问函数中的全局变量

转载 作者:太空宇宙 更新时间:2023-11-04 10:28:01 24 4
gpt4 key购买 nike

我写这个问题是因为我不熟悉 sh 脚本,但我知道以下行在/bin/bash 中有效,但我需要使用/bin/sh。下面是代码:

#!/bin/sh

trythis=1

test()
{
((trythis++))
echo $trythis
}

test

我希望输出 2,但我收到以下错误:

./test: 7: ./test: trythis++: not found
1

最佳答案

代替

((trythis++))

使用这个:

trythis=`expr $trythis + 1`

expr(1) 是一个外部程序,它接收参数 1+1,执行计算并打印 2,由于反引号,它被分配给 trythis。 (参见 man expr,尝试在控制台上输入类似 expr 1 + 2 的内容。)

关于linux - sh脚本访问函数中的全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40935138/

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