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

https://github.com/kindermax/lsclone

Simple ls clone written in C (while learning C)
https://github.com/kindermax/lsclone

Last synced: about 1 month ago
JSON representation

Simple ls clone written in C (while learning C)

Awesome Lists containing this project

README

          

# lsclone

Simple ls(1) clone written in C for learning purposes.

## Build

### Cmake

```bash
cmake -B build
cmake --build build

./build/lsclone
```

Btw, in Clion it just works.

### Make

```bash
make
./build/lsclone
```

### Gcc

```bash
gcc lsclone.c -o build/lsclone

./build/lsclone # try with -l
```