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

https://github.com/timob/ls

List directory Unix utility written in Go.
https://github.com/timob/ls

Last synced: 5 months ago
JSON representation

List directory Unix utility written in Go.

Awesome Lists containing this project

README

          

# LS

## Install
### Release
``` bash
cd ~/bin
curl -Ls https://github.com/timob/ls/releases/download/v1.0.0/ls_v1.0.0_Linux-64bit.tar.gz | tar -zxf -
```

### From Source
``` bash
$ git clone https://github.com/timob/ls.git
Cloning into 'ls'...
remote: Enumerating objects: 210, done.
remote: Total 210 (delta 0), reused 0 (delta 0), pack-reused 210
Receiving objects: 100% (210/210), 1.45 MiB | 17.05 MiB/s, done.
Resolving deltas: 100% (87/87), done.
$ cd ls
$ go get
go get: added github.com/bradfitz/slice v0.0.0-20180809154707-2b758aa73013
go get: added github.com/daviddengcn/go-colortext v1.0.0
go get: added github.com/dustin/go-humanize v1.0.0
go get: added github.com/timob/ls v0.0.0-20171116232057-a724f1d86305
go get: added github.com/timob/sindex v0.0.0-20201206080312-1eedde862709
go get: added go4.org v0.0.0-20201209231011-d4a079459e60

# Make sure $GOBIN is set, to where the binary is placed.
$ go install
```

## Changes
* 2022-04-15: Add go.mod, v1.0.0
* 2017-11-03: Add --height option, with less allows for wide output
* 2016-11-26: Add -P path only mode option, add --width option, OSX support
* 2016-8-25: Add humanized timestamps with -h
* 2016-2-28: Fix user name, group name lookup on Unix
* 2016-2-27: Added color output

## Description
Cross platform list directory Unix utility written in Go, Compatiblity with GNU ls. See [https://tekao.net/posts/ls](https://tekao.net/posts/ls).

## Why?
This uses the SIndex https://github.com/timob/sindex slice indexing library to handle lists of options, file arguments, directory
lists. So really a use case for that library. IMHO it makes programming lists using iterators, insert, deleting and appending much
easier.

## Todo
* Add other GNU ls options.
* Fix terminal detection.