如何使用 grep、sed 或 awk 删除卷曲输出中的特殊字符

如何使用 grep、sed 或 awk 删除卷曲输出中的特殊字符

我试图\r\n在我的卷曲输出中删除我的代码是:

curl -s -u ian.guinto:W0lfg@ng131994 --request GET --url 'https://jira.toro.io/rest/api/2/issue/OJTSYSAD-829/comment' -H "Content-Type: application/json" | jsonpp | grep body | cut -d ':' -f2 

将会输出。

 "Test comment",
 "test comment 2\r\n",
 "test comment3\r\nTest comment 4\r\n",

我的预期输出是:

 "Test comment",
 "test comment 2",
 "test comment3 Test comment 4",

答案1

实际上,您只需使用 JQ 即可做到这一点:

$ curl -L -O -u ian.guinto:W0lfg@ng131994 \
jira.toro.io/rest/api/2/issue/OJTSYSAD-829/comment

$ jq '.comments[].body | rtrimstr("\r\n") | gsub("\r\n"; " ")' comment
"Test comment"
"test comment 2"
"test comment3 Test comment 4"

http://github.com/stedolan/jq

相关内容