ksh 关联数组

发布于 2024-10-06 22:26:13 字数 380 浏览 2 评论 0原文

我有一个需要使用关联数组的脚本。作为 ksh 的新手,我无法找到 ksh 支持关联数组的任何地方。当我尝试使用常规数组语法并分配时,出现索引不能那么大的错误。 ksh 支持关联数组吗?如果不是,替代解决方案是什么?

我需要执行以下操作:

${array[$name]}=value

稍后在代码中读取一个值,因为

${array[$name]}

每次运行此脚本时,我都会从数组中存储和读取大约 2000 个值。

不幸的是,由于脚本中包含的遗留模块的范围,我无法使用 perl。感谢任何帮助、提示或技术。

I have a script that needs to use associative arrays. Being new to ksh, I am unable to find anywhere that ksh supports associative arrays. When I try to use regular array syntax and assign, I get an error that index cannot be that big. Does ksh support associative arrays? If not, what is the alternative solution?

I need to do the following:

${array[$name]}=value

and later in the code, to read a value for

${array[$name]}

I have about 2000 values to be stored and read from the array every time this script runs.

Unfortunately, I cannot use perl due to the extent of legacy modules to be included inside the script. Appreciate any help, tips or techniques.

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

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

发布评论

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

评论(1

余罪 2024-10-13 22:26:13

ksh typeset 命令用于声明关联数组。

$ typeset -A age
$ age[bob]=42
$ age[alice]=31
$ print ${age[bob]}
42

The ksh typeset command is used to declare an associative array.

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