Commit a17a2d7

mo khan <mo@mokhan.ca>
2025-08-28 15:58:37
feat: print the bash command that is executed before printing the output
1 parent 54fc7e2
Changed files (1)
lib
elelem
toolbox
lib/elelem/toolbox/bash.rb
@@ -20,6 +20,7 @@ module Elelem
         command = args["command"]
         output_buffer = []
 
+        tui.say(command, newline: true)
         Open3.popen3("/bin/bash", "-c", command) do |stdin, stdout, stderr, wait_thread|
           stdin.close
           streams = [stdout, stderr]