diff --git a/.gitignore b/.gitignore index 1b96f7b..4f0d84e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ shell +shell2 diff --git a/shell2 b/shell2 new file mode 100755 index 0000000..a5a922f Binary files /dev/null and b/shell2 differ diff --git a/shell2.c b/shell2.c new file mode 100644 index 0000000..5fa923e --- /dev/null +++ b/shell2.c @@ -0,0 +1,17 @@ +#include + +#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(); +}