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

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

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)