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)
- Host: GitHub
- URL: https://github.com/kindermax/lsclone
- Owner: kindermax
- Created: 2023-05-09T20:35:48.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-10T18:28:21.000Z (about 3 years ago)
- Last Synced: 2025-02-26T10:32:44.800Z (over 1 year ago)
- Language: C
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```