Initial working shell: bash-for-windows

- Cross-compiled Go-based shell for Windows (PE32+ executable)
- Builtins: cd, pwd, echo, exit, export, source, alias, type
- Coreutils: ls, cat, grep, sort, wc, head, find, cp, mv, rm, mkdir, touch, clear
- Command chaining: &&, ||, ;
- Pipes between builtins and external commands
- Variable expansion (, ) and assignment (NAME=VALUE)
- Tokenizer with single/double quote handling
- Linux and Windows (x86_64) builds via build.sh
This commit is contained in:
Cametendo
2026-05-26 10:18:05 +02:00
parent 11162130a0
commit eba49c46bc
9 changed files with 1067 additions and 1 deletions

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/cametendo/bash-for-windows
go 1.26.2