https://github.com/akhaled01/c-dir
custom made GNU ls command in Go
https://github.com/akhaled01/c-dir
gnu golang ls
Last synced: 3 months ago
JSON representation
custom made GNU ls command in Go
- Host: GitHub
- URL: https://github.com/akhaled01/c-dir
- Owner: akhaled01
- Created: 2023-12-23T12:58:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-16T20:47:30.000Z (about 1 year ago)
- Last Synced: 2025-01-19T23:44:43.641Z (4 months ago)
- Topics: gnu, golang, ls
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c-dir
A Small Replica of the GNU Coreutils `ls` command built purely in golang. This project is part of reboot01's projects.
## The following flags are implemented
* `-l`
* `-R`
* `-a`
* `-r`
* `-t`## To use:
1. Clone this repo
2. enter the directory and run `go run . [FLAGS] [FILEPATH]`## The following Packages were used:
* fmt
* os
* os/user
* strconv
* strings
* syscall
* time
* math/rand
* errors
* io/fs#### No non standard libraries were used in this project
## Authors
* akhaled01 (akhaled)
* xlvk (fatabbas)
* iSolate77 (mfaris)