私はフォーマットを除いて次の試行を使用する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:/'
しかし、それは私にエラーを与えます。