Home > サブプロセス


Pythonからシェルスクリプトを呼び出す方法

subprocessモジュールを使用する方法:import subprocess # シェルスクリプトのパスと引数を指定 script_path = "/path/to/script.sh" args = ["arg1", "arg2"] # サブプロセスを実行してシェルスクリプトを呼び出す subprocess.call([script_path] + args)>>More


Pythonでシェルコマンドを実行する方法

subprocessモジュールを使用する方法:import subprocess # シェルコマンドを実行して結果を取得する result = subprocess.run(["ls", "-l"], capture_output=True, text=True) print(result.stdout) # コマンドの実行結果を確認する if result.returncode == 0: print("コマンドは正常に実行されました") else: print("コマンドはエラーで終了しました")>>More