gpt4 book ai didi

linux - Bash 不删除前导空格

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:09:47 26 4
gpt4 key购买 nike

我好像遇到了一个很奇怪的问题。我正在尝试使用 jsawk 从 CURL 命令检索 JSON 字段值,但是 jsawk 需要其 JSON pretty-print (由于“python -mjson.tool”,这可以使用格式正确的 JSON 文件轻松实现)。

问题是我在 JSON 文件/字符串的开头有一个空格(这是非法的),但我似乎无法删除它。

 {"response": {"status": {"version": "4.2", "code": 5, "message": "The Identifier specified does not exist"}}}

几个选项独立于我的脚本工作(例如 echo ~/m.json | sed -e 's/^[\t]*//')

{"response": {"status": {"version": "4.2", "code": 5, "message": "The Identifier specified does not exist"}}}

看出区别了吗?但是以下所有方法都没有达到预期的效果。我什至尝试过将字符串传递给 sed 来模拟命令行行为,但没有成功。谁能指出我正确的方向?

thisjson=$(curl -F "api_key=$apikey" -F "format=json" -F "md5=$thismd5" -F... );
echo $thisjson > $tempjson; #Req'd else bash re-evals curl command
temp=$(cat $tempjson); #Read string back to variable
echo $temp; #Try several methods to strip ws
temp="${temp##+([[:space:]])}";
echo $temp;
temp=$(sed -e 's/^[[:space:]]*//' <<<"$temp")
echo "|${temp}|";
temp=$(echo ${temp/ /} );
temp="${temp#"${temp%%[![:space:]]*}"}"
echo $temp; #Try piping string directly
thisprettyjson=$(echo $temp | sed -e 's/^[ \t]*//' |python -mjson.tool);
echo $thisprettyjson;

吐出几行(每个 echo 一行)直到“No JSON...decoded”

 {"response": {"status": {"version": "4.2", "code": 5, "message": "The Identifier specified does not exist"}}}
...
{"response": {"status": {"version": "4.2", "code": 5, "message": "The Identifier specified does not exist"}}}
No JSON object could be decoded

我确定我错过了一些愚蠢的事情。也许唯一要提及的是我更改了 IFS,从 Space/Tab/NL 到简单的 NL。

有人有什么想法吗?或者解析 JSON 的替代简单方法?谢谢!

最佳答案

我用这个做了测试:

tempjson='tempjson.txt'
thisjson=' {"response": {"status": {"version": "4.2", "code": 5, "message": "The Identifier specified does not exist"}}}'
echo $thisjson > $tempjson; #Req'd else bash re-evals curl command
...

对我有用:

{"response": {"status": {"version": "4.2", "code": 5, "message": "The Identifier specified does not exist"}}}
|{"response": {"status": {"version": "4.2", "code": 5, "message": "The Identifier specified does not exist"}}}|

所以我会说你有一个特殊的空格字符,它是由你的 $(curl -F "api_key=$apikey"-F "format=json"-F "md5 =$thismd5"-F... ); 命令

因此,如果第一个字符不是“{”,则尝试删除第一个字符而不是空白字符

关于linux - Bash 不删除前导空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8064479/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com