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)
- Host: GitHub
- URL: https://github.com/hudson-newey/2unu
- Owner: hudson-newey
- License: unlicense
- Created: 2022-12-30T09:36:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-10T13:52:19.000Z (over 2 years ago)
- Last Synced: 2025-02-27T00:53:52.923Z (over 1 year ago)
- Topics: cli, command-line, gnu, gnu-linux, libc, linux, linux-shell
- Language: C
- Homepage: https://hudson-newey.github.io/posts/blog/2unu
- Size: 133 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: history/history.c
- License: LICENSE
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 .
```