Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Latest commit

 

History

History
58 lines (45 loc) · 665 Bytes

README.md

File metadata and controls

58 lines (45 loc) · 665 Bytes

sijimi

Purpose

I created "sijimi" for the purpose of knowing how shll works.

Implemented function

  • execute

    $ ls
    test.txt
    $ cat test.txt
    hoge
    fuga
    hogefuga
    fugafuga
    hogefuga
    
  • pipe

    $ cat test.txt | grep fuga
    fuga
    hogefuga
    fugafuga
    hogefuga
    
  • redirect

    $ echo rararara > test1.txt
    $ cat test1.txt
    rararara
    

Requirement

  • gcc
  • make

Installation

$ git clone [email protected]:higuruchi/sijimi.git
$ cd ./sijimi/src
$ make run

Usage

$ git clone [email protected]:higuruchi/sijimi.git
$ cd ./sijimi
$ docker build -t sijimi .
$ docker run -it --rm sijimi