From 82c3e2b3466e39701f067a1297dc5c2da0d2ae12 Mon Sep 17 00:00:00 2001 From: Astronand Date: Tue, 3 Mar 2026 08:57:45 -0500 Subject: [PATCH] fix ll --- Src/Hyperion-bash/bin/hysh | 4 ++-- Src/Hyperion-bash/bin/ll | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Src/Hyperion-bash/bin/hysh b/Src/Hyperion-bash/bin/hysh index 4e0d50d..6038361 100644 --- a/Src/Hyperion-bash/bin/hysh +++ b/Src/Hyperion-bash/bin/hysh @@ -1,7 +1,7 @@ --:Minify:-- syscall.open("/dev/tty/1","r") --stdin (Device 0) syscall.open("/dev/tty/1","w") --stdout (Device 1) -syscall.open("/dev/null","w") --stderr (device 2) +syscall.open("/dev/null","w") --stderr (device 2) local success, errorMsg = xpcall(function() @@ -15,7 +15,7 @@ print("HyperionOS hysh Shell") local userhost = (syscall.getUsername() or "Unknown").."@"..(syscall.getHostname() or "Unknown") local commandHistory = {} local terminate = false -syscall.setEnviron("SHELL","rtbash") +syscall.setEnviron("SHELL","hysh") syscall.setEnviron("PATH","/bin/") local _home = syscall.getEnviron("HOME") if _home and _home ~= "" then diff --git a/Src/Hyperion-bash/bin/ll b/Src/Hyperion-bash/bin/ll index fe29656..5cefbfd 100644 --- a/Src/Hyperion-bash/bin/ll +++ b/Src/Hyperion-bash/bin/ll @@ -1,3 +1,3 @@ local args={...} table.insert(args, "-lah") -syscall.exec("/bin/ls", args)2 \ No newline at end of file +syscall.exec("/bin/ls", args) \ No newline at end of file