busybox shell 拒绝执行脚本的特定行
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我运行它没有问题。
如果其他方法都失败了,请尝试逐步执行。
实际上
$(())
可以让您执行算术运算。你到底想做什么?您想转换为十六进制数字吗?I don't have a problem running it.
try doing it step by step if all else fails.
actually
$(())
lets you perform arithmetic. what is it actually you are trying to do? are you trying to convert to a hex number?