From e63d49dc9884c5439f73ac19935c59e908e44d57 Mon Sep 17 00:00:00 2001 From: Ryan T Date: Thu, 15 Jan 2026 15:58:04 -0500 Subject: [PATCH] Remove the other old bash lmao --- Src/Hyperion-bash-v1.0.0/bin/bash | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/Src/Hyperion-bash-v1.0.0/bin/bash b/Src/Hyperion-bash-v1.0.0/bin/bash index b4e7e93..e69de29 100644 --- a/Src/Hyperion-bash-v1.0.0/bin/bash +++ b/Src/Hyperion-bash-v1.0.0/bin/bash @@ -1,24 +0,0 @@ -local args={...} -<<<<<<< HEAD -local sys = require("sys") -======= -local os=require("os") -local io=require("io") -local text="" -local blockKeyEvents=false -io.link(io.focas) - -os.hookSignal("keyTyped", function(_, screen, key) - if blockKeyEvents then return end - if key == "\n" then - blockKeyEvents=true - elseif key == "\b" then - text=text:sub(1,#text-1) - io.stdout.printInline("\b") - else - text=text..key - io.stdout.printInline(key) - end -end) - ->>>>>>> 9b268810a7ea44e586d5faf6e2717f1d02497c03