guonaihong / coreutils

Reimplement the gnu coreutils package with the go language. Coreutils contains many basic commands

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

coreutils

summary

The coreutils project is a reimplemented version of golang

install coreutils

env GOPATH=`pwd` go get github.com/guonaihong/coreutils/coreutils

If you want to use the cat command

./coreutils cat flie
./coreutils cut -d":" -f1 /etc/passwd
./coreutils echo "hello china"

install Compile command separately

env GOPATH=`pwd` go run github.com/guonaihong/coreutils/buildall

If you want to use the cat command

./cat flie
./cut -d":" -f1 /etc/passwd
./echo "hello china"

The completed command is as follows

progress

progress = 34 / 92 = 36.7%

About

Reimplement the gnu coreutils package with the go language. Coreutils contains many basic commands

License:Apache License 2.0


Languages

Language:Go 100.0%