An open API service indexing awesome lists of open source software.

https://github.com/hudson-newey/2unu

A hobby that I'm working on (so I can learn C) that can replace the GNU command line programs. (essentially a cli wrapper for libc)
https://github.com/hudson-newey/2unu

cli command-line gnu gnu-linux libc linux linux-shell

Last synced: about 1 month ago
JSON representation

A hobby that I'm working on (so I can learn C) that can replace the GNU command line programs. (essentially a cli wrapper for libc)

Awesome Lists containing this project

README

          

# 2UNU

A recreation of the GNU command line programs under the creative commons license.

This project is more just me learning how C and the GNU command line programs work in depth.

## How to build

1. Clone the directory

```sh
git clone https://github.com/hudson-newey/2UNU.git
```

2. Enter the directory

```sh
cd ./2UNU/
```

3. Create build directory

```sh
mkdir ./build/
cd ./build/
```

4. Run CMake

```sh
cmake ..
```

5. Compile applications

```sh
cmake --build .
```