busybox shell 拒绝执行脚本的特定行

发布于 2024-08-28 18:31:02 字数 221 浏览 3 评论 0原文

我正在使用 busybox shell 来执行一个脚本,当我使用 nfs 启动 linux 时,bash 将执行该脚本。请让我知道这条线的正确替代方案。

cur_major=$((0x`stat -c %t $dev 2>/dev/null`))

busybox 抛出一个错误,指出“0x”语法错误,我理解这是该行的语法问题。

提前致谢

I am using busybox shell to execute a script which the bash executes when i boot linux using the nfs. Please let me know the correct alternative for this line.

cur_major=$((0x`stat -c %t $dev 2>/dev/null`))

The busybox throws in an error saying "0x" syntax error, which i understand is the problem with the syntax of this line.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘落散花 2024-09-04 18:31:02
major_hex=`stat -c %t $dev 2>/dev/null`
cur_major=`printf "%2d" 0x"$major_hex"`
major_hex=`stat -c %t $dev 2>/dev/null`
cur_major=`printf "%2d" 0x"$major_hex"`
我是男神闪亮亮 2024-09-04 18:31:02

我运行它没有问题。
如果其他方法都失败了,请尝试逐步执行。

$ var=$(stat -c "%t" $dev 2>/dev/null)
$ var=$((0x$var))

实际上 $(()) 可以让您执行算术运算。你到底想做什么?您想转换为十六进制数字吗?

I don't have a problem running it.
try doing it step by step if all else fails.

$ var=$(stat -c "%t" $dev 2>/dev/null)
$ var=$((0x$var))

actually $(()) lets you perform arithmetic. what is it actually you are trying to do? are you trying to convert to a hex number?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文