From 66442a571e64f70ced00724e820955c0ffc7d144 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 24 Jun 2025 04:45:13 -0400 Subject: usr: Put OSH banner in /usr/share/motd Signed-off-by: Ian Moffett --- usr.bin/osh/osh.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'usr.bin/osh/osh.c') 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); -- cgit v1.2.3