标签:第三方 rac linu roo 远程服务器 shel hang json 安装
使用python -m json.tool
[root@client1 temp]# echo ‘{"address":{"province":"zhejiang","city":"hangzhou"},"name":"lmx","sex":"male"}‘ | python -m json.tool
{
"address": {
"city": "hangzhou",
"province": "zhejiang"
},
"name": "lmx",
"sex": "male"
}
使用python -c "import redies"
,使用这种方式可以在脚本中实现对远程服务器验证操作。
[root@client1 temp]# python -c "import wheel" #库存在则不输出
[root@client1 temp]# python -c "import paramiko" #库不存在则报错
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named paramiko
标签:第三方 rac linu roo 远程服务器 shel hang json 安装
原文地址:https://www.cnblogs.com/tz90/p/14141768.html