Metadata-Version: 2.1
Name: u-coreutils
Version: 0.1.9
Summary: GNU coreutils implementation with Python 3.8
Home-page: https://github.com/duyixian1234/u-coreutils
License: MIT
Author: duyixian
Author-email: duyixian1234@qq.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=7.1.2,<8.0.0)
Project-URL: Repository, https://github.com/duyixian1234/u-coreutils
Description-Content-Type: text/markdown

# u-coreutils

![CI](https://github.com/duyixian1234/u-coreutils/workflows/CI/badge.svg?branch=master)

GNU coreutils implementation with Python 3.8

## Tools

✔ cat

✔ echo

✔ head

✔ mkdir

✔ false

✔ base64

## INSTALL

```shell
pip install -U u_coreutils
```

## USE

```shell
u-cat a.txt
u-echo -e -n 'Hello,World!\n'
u-head -n 5 a.txt
u-mkdir -p -v a/b/c/d
u-false
u-base64 -w 100  a.txt
```

