From 984e125cfd628ef6add03b7c45e2e2c91ac2d747 Mon Sep 17 00:00:00 2001
From: retoor <retoor@molodetz.nl>
Date: Fri, 21 Mar 2025 09:19:41 +0100
Subject: [PATCH] Added process output.

---
 tools.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools.h b/tools.h
index 92cb783..b7c9012 100644
--- a/tools.h
+++ b/tools.h
@@ -77,6 +77,7 @@ char* tool_function_linux_terminal(char* command) {
             return strdup("Failed to allocate memory!");
         }
         output = new_output;
+        printf("%s", output);
         strcpy(output + total_size, buffer);
         total_size += chunk_size;
     }