有时候python代码必须要在linux环境运行
在xshell运行脚本,将文件输出到文件不能使用下面的方法输出
import json with open("tmp.txt", "w") as fp: fp.write(json.dumps(tmp))
在xshell中只需要将输出重定向一下就ok啦~
使用办法
python xxx.py > xxx.log
然后在跑脚本的路径查看 ll
就会发现刚刚重定向输出的文件啦
[root@localhost data]# ll
total 400
-rw-------. 1 root root 4519 Apr 30 10:31 test.py
-rw-r--r--. 1 root root 398994 Apr 30 10:39 tmp.log