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

https://github.com/lusingander/left


https://github.com/lusingander/left

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

left
====

left - output the left part of files (like `head`/`tail` command)

## Usage

```
$ cat foo.txt
0123456789
0123456789
01234567890123456789
01234567890123456789
012345678901234567890123456789
012345678901234567890123456789

$ cat foo.txt | left -n 15
0123456789
0123456789
012345678901234
012345678901234
012345678901234
012345678901234

```