从字符串到整数(脚本)

发布于 2024-09-03 19:08:01 字数 339 浏览 5 评论 0原文

我有这段代码:

 set calls = `cut -d" " -f2 ${2} | grep -c "$numbers"`
 set messages = `cut -d" " -f2 ${3} | grep -c "$numbers"`

 @ popularity = (calls * 3) + messages

错误

@ expression syntax

是什么意思? grep -c 返回数字,我错了吗,提前感谢

$numbers 我有数字列表,2 和 3 参数也包含数字

I have this snippet of the code:

 set calls = `cut -d" " -f2 ${2} | grep -c "$numbers"`
 set messages = `cut -d" " -f2 ${3} | grep -c "$numbers"`

 @ popularity = (calls * 3) + messages

and error

@ expression syntax

what does it mean? grep -c returns number, am I wrong, thanks in advance

in $numbers I have list of numbers, 2 and 3 parameters also contain numbers

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

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

发布评论

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

评论(1

£噩梦荏苒 2024-09-10 19:08:01

尝试一下,

@ popularity = ($calls * 3) + $messages

仍然需要$符号来表示变量。

请参阅 C-shell食谱

Try

@ popularity = ($calls * 3) + $messages

The $ symbols are still needed to indicate variables.

See C-shell Cookbook

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