23 lines
316 KiB
Plaintext
Raw Normal View History

2026-01-29 08:06:31 +01:00
TASK: Execute a Python script ('print("Python OK")') and a Shell command ('echo Shell OK') in parallel using async mode. Wait for both to finish using process_get_status and save the combined results to 'mixed_async.txt'.
2026-01-29 07:42:06 +01:00
----------------------------------------
Loading...
┌─── Python Source Code ─────────────────────────────────────
│  1 | print("Python OK")
└────────────────────────────────────────────────────────────
-> linux_terminal_execute (timeout 10s):
echo Shell OK
2026-01-29 08:06:31 +01:00
[228948] Python OK
[228949] Shell OK
2026-01-29 07:42:06 +01:00
-> Writing file: mixed_async.txt
  CHANGES: mixed_async.txt 
LINE OLD
--------------------------------------------------------------------------------------------------------------------------------------------
2026-01-29 08:06:31 +01:00
1 - Python OK
2 - Shell OK
2026-01-29 07:42:06 +01:00
2026-01-29 08:06:31 +01:00
The Python script and shell command have both completed successfully. Their combined outputs have been saved to 'mixed_async.txt'.