3

背景

我希望能够将 json 文件传递​​给 WP CLI,以迭代地创建帖子。

所以我想我可以创建一个 JSON 文件:

[
    {
        "post_type": "post",
        "post_title": "Test",
        "post_content": "[leaflet-map][leaflet-marker]",
        "post_status": "publish"
    },
    {
        "post_type": "post",
        "post_title": "Number 2",
        "post_content": "[leaflet-map fitbounds][leaflet-circle]",
        "post_status": "publish"
    }
]

并用 jq 迭代数组:

cat posts.json | jq --raw-output .[]

我希望能够迭代这些以执行类似的功能:

wp post create \
  --post_type=post \
  --post_title='Test Map' \
  --post_content='[leaflet-map] [leaflet-marker]' \
  --post_status='publish'

有没有办法可以用jq或类似方法做到这一点?

到目前为止,我得到的最接近的是:

> for i in $(cat posts.json | jq -c .[]); do echo $i; done

但这似乎与字符串中的(有效)空格有关。输出:

{"post_type":"post","post_title":"Test","post_content":"[leaflet-map][leaflet-marker]","post_status":"publish"}
{"post_type":"post","post_title":"Number
2","post_content":"[leaflet-map
fitbounds][leaflet-circle]","post_status":"publish"}

我用这种方法是否可行,或者可以做到吗?

4

3 回答 3

7

使用 awhile读取整行,而不是遍历命令替换产生的单词。

while IFS= read -r obj; do
    ...
done < <(jq -c '.[]' posts.json)
于 2019-03-01T22:11:08.887 回答
1

也许这对你有用:

制作一个 bash 可执行文件,也许可以调用它wpfunction.sh

#!/bin/bash

wp post create \
  --post_type="$1"\
  --post_title="$2" \
  --post_content="$3" \
  --post_status="$4"

然后运行jq你的posts.json并将其输入xargs

jq -M -c '.[] | [.post_type, .post_title, .post_content, .post_status][]' \
posts.json | xargs -n4 ./wpfunction`

我正在尝试看看这将如何处理包含引号的 post_content ......

于 2019-03-02T08:44:49.100 回答
1

首先生成一个您希望传递的参数数组,然后使用@sh. 然后你可以传递给 xargs 来调用命令。

$ jq -r '.[] | ["post", "create", (to_entries[] | "--\(.key)=\(.value|tojson)")] | @sh' input.json | xargs wp
于 2019-03-02T09:17:33.760 回答