This commit is contained in:
benstrb 2025-10-04 18:18:03 +02:00
parent d732e5b323
commit 8a63095163
3 changed files with 18 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
shell
shell2

BIN
shell2 Executable file

Binary file not shown.

17
shell2.c Normal file
View file

@ -0,0 +1,17 @@
#include<stdio.h>
#define clear() printf("\033[H\033[J")
void init_shell() {
clear();
printf("\n\n\n\n******************"
"************************");
printf("\n\n\n\t****MY SHELL****");
printf("\n\n\t-USE AT YOUR OWN RISK-");
printf("\n\n\n\n*******************"
"***********************");
}
int main() {
init_shell();
}