diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-24 04:45:13 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-24 04:45:13 -0400 |
commit | 66442a571e64f70ced00724e820955c0ffc7d144 (patch) | |
tree | bb907739d8ea0c8212375cef4e087d5548980c28 /usr.bin | |
parent | 88845750041260523fe35c4f8b4bca7f5890e45b (diff) |
usr: Put OSH banner in /usr/share/motd
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/osh/osh.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/usr.bin/osh/osh.c b/usr.bin/osh/osh.c index aa8ef27..556b976 100644 --- a/usr.bin/osh/osh.c +++ b/usr.bin/osh/osh.c @@ -40,11 +40,6 @@ #define is_ascii(C) ((C) >= 0 && (C) <= 128) #define COMMENT '@' -#define WELCOME \ - ":::::::::::::::::::::::::::::::::::::::\n" \ - ":: OSMORA GATEWAY ~ Every key echos ::\n" \ - ":: ..... Proceed with purpose ..... ::\n" \ - ":::::::::::::::::::::::::::::::::::::::" #define HELP \ "Default commands:\n" \ @@ -385,7 +380,6 @@ main(int argc, char **argv) found = 0; bell_fd = open("/dev/beep", O_WRONLY); - puts(WELCOME); while (running) { fputs(PROMPT, stdout); |