testing version of LuaBIOS and OpenOS

people were having issues getting them to work so now we promote consistency
This commit is contained in:
2025-06-28 20:41:49 +02:00
parent 8210e20939
commit 687cfebd00
182 changed files with 14016 additions and 1 deletions

19
data/OpenOS/usr/man/set Normal file
View File

@@ -0,0 +1,19 @@
NAME
set - set a environment variable
SYNOPSIS
set [VARIABLE]=[VALUE]
DESCRIPTION
set an environment variable. Quote [VALUE] to include spaces or non alphanumerics.
EXAMPLES
set
Shows all environment variables
set example="Hello World"; echo $example
Prints Hello World without quotes
set LS_COLORS="{FILE=0xFFFFFF,DIR=0x66CCFF,LINK=0xFFAA00,['*.lua']=0xFFFF00}"
Change ls colors, showing lua files in yellow. Note ls color defaults are set in /etc/profile
SEE ALSO
unset