我收集了 python 文件,这些文件使用以下尝试,除了格式化
try:
# some code....
except Exception, e:
# some exception code....
这是一个简单的修复,应该看起来像
try:
# some code....
except SomeException as e:
# some exception code....
我尝试使用该命令更改所有这些文件中的文本
grep -Erl "(*.)(, e:)" | xargs sed -i's/\(*.\)\(, e:\)/\1 as e:/'
但这给了我一个错误。