arrays – 如何在bash数组中存储命令返回值

前端之家收集整理的这篇文章主要介绍了arrays – 如何在bash数组中存储命令返回值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个命令,在执行时返回我想要存储在bash数组中的数字集.
vihaan@trojan:~/trash$xdotool search brain 
Defaulting to search window name,class,and classname
52428804
50331651
62914564
65011896
48234499

如何将这些值存储在数组中?

在这个简单的情况下:
array=( $(xdotool search brain) )

如果输出更复杂(例如,行中可能有空格),则可以使用bash内置mapfile:

mapfile -t array < <(xdotool search brain)

(帮助mapfile了解更多信息)

原文链接:https://www.f2er.com/bash/385184.html

猜你在找的Bash相关文章