Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.23 KB

README.md

File metadata and controls

39 lines (32 loc) · 1.23 KB

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

$ gcc aesh.c -o aesh

$ chmod +x aesh

$ cp aesh ~/aesh

$ cd ~

$ ./aesh