Skip to content

tarik-celik/AetherShell

Repository files navigation

AetherShell

A minimal unix-like shell that is independent as possible.

Features

  • Clearing the screen (clear)
  • Change directory (cd dirname)
  • Remove a file (rm filename)
  • Remove a directory (rmdir dirname)
  • Create a file (touch filename)
  • Create a directory (mkdir dirname)
  • Execute external commands (exec name)
  • Move files (mv file location)
  • Copy files (cp file location)
  • cli calculator (calc)
  • Display current directory (pwd)
  • Display the host name (hostname)
  • Display the current user (whoami)

Images

alt image alt image alt image alt image alt image

Installation

> cd ~

> git clone github.com/tarik-celik/AetherShell

> cd AetherShell

> cc aesh.c -o aesh

> chmod +x aesh

> cp aesh ~/aesh

> cd ~

> ./aesh