0

如何将我从列名中获得的值映射到以后可以在我的 bash 脚本中使用的数组中?

+------------------------------+----------+-----------+---------+
| name                         | status   | update    | version |
+------------------------------+----------+-----------+---------+
| enable-jquery-migrate-helper | inactive | none      | 1.0.1   |
| gravityforms                 | inactive | none      | 2.4.17  |
| gutenberg                    | inactive | none      | 8.8.0   |
| redirection                  | inactive | none      | 4.8     |
| regenerate-thumbnails        | inactive | none      | 3.1.3   |
| safe-svg                     | inactive | none      | 1.9.9   |
| weglot                       | inactive | none      | 3.1.9   |
| wordpress-seo                | inactive | available | 14.8    |
+------------------------------+----------+-----------+---------+

我已经尝试了以下方法,但这只会将标题的名称保存在表中:

IFS=$'\n' read -r -d '' -a my_array < <( wp plugin list  --status=inactive --skip-plugins  && printf '\0' )

回声$my_array

 name status update version

在我检索到值之后,我想循环它们以将它们添加到数组中

4

1 回答 1

2

如果您的意图是使用 shell 或 awk 脚本映射结果,则最好使用 CSV 输出格式而不是默认表格格式:

wp plugin list --status=inactive --skip-plugins --format=csv

这将输出:

name,status,update,version
enable-jquery-migrate-helper,inactive,none,1.0.1
gravityforms,inactive,none,2.4.17 
gutenberg,inactive,none,8.8.0
redirection,inactive,none,4.8
regenerate-thumbnails,inactive none,3.1.3
safe-svg,inactive,none,1.9.9
weglot,inactive,none,3.1.9
wordpress-seo,inactive,available,14.8
于 2020-08-28T11:04:13.527 回答