无论何时在终端中触发错误,如何将终端错误传递给Python程序?
示例:
考虑我正在运行一个Java程序,却遇到类似这样的错误
file.java:2: error: ',', ')', or '[' expected
public static void main(String args...) {
^
1 error
输入错误的bash命令的另一个示例
ls: option '--a' is ambiguous; possibilities: '--all' '--almost-all' '--author'
Try 'ls --help' for more information.
我需要将此错误传递给python程序,并在终端显示此类错误时运行该程序。
如何传递错误?