gpt4 book ai didi

linux - Bash 脚本从第二个 bash 脚本获取变量

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

Possible Duplicate:
bash store output as a variable

我有一个脚本,它输出一个简单的整数,例如“10”,然后我有第二个脚本,我想在其中调用此脚本并将整数作为变量获取。

#!/bin/bash

KBPS= ## NEED OUTPUT FROM /USR/LOCAL/BIN/ETH0TX.SH
THRESHOLD=50 #KBPS
if [ $KBPS -gt $THRESHOLD ]; then
exit 1
fi

这可能吗?

最佳答案

像这样:

KBPS=$(/usr/local/bin/eth0tx.sh)

关于linux - Bash 脚本从第二个 bash 脚本获取变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14157076/

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