@dev-essentials/lr

0.0.2 • Public • Published

lr

Extract line ranges from piped input.

npm

INFO: lr is still in ealry development. Syntax and features may be subject to change.

Why

I frequently find myself googling 'linux get specific line from file'.

Here's what usually pops up*1:

  • cat myfile | sed -n '10,20p;21q'
  • cat myfile | awk 'NR>=10&&NR<=20'

I'm looking this up more often than I wanna admit.
So I wrote a simple solution for extracting line ranges.

Of course sed and awk are way more powerful, but if you just wanna extract some lines and just can't remember those commands, lr could be a good alternative for you.

Syntax

lr has a very simple range-based syntax.
It is parsed by the following regexp: /(\^|\d+)?(?:-(\d+|\$))?/g

A range is basically start-end.
The following special characters are supported:

  • ^ refers to first line
  • $ refers to last line

Multiple ranges can be specified, separated by comma (,) characters.

Behavior

Lines being matched by multiple ranges are only output once.

Ranges covering the full line range will be treated as pass-through, which means they will simply output their input as-is: (-, ^-$).

Examples

Due to the special markers (^ and $) there will be some cases where multiple expressions yield the same result.

In the following examples, all possible combinations will be listed.

Get the first line of a file:

$ cat myfile | lr ^
$ cat myfile | lr 1

Get the first 10 lines of a file:

$ cat myfile | lr 1-10
$ cat myfile | lr ^-10

Get lines 5 to 10 and lines 25 to 30:

$ cat myfile | lr 5-10,25-30

Get lines 1 to 10 and lines 50 to end:

$ cat myfile | lr 1-10,50-$
$ cat myfile | lr ^-10,50-$

Get all lines of a file (Seems pretty useless to me):

$ cat myfile | lr -
$ cat myfile | lr ^-$



Forgive me the use of cat for reading a file.
Since lr was written specifically for piped input, using cat seemed more natural.

Package Sidebar

Install

npm i @dev-essentials/lr

Weekly Downloads

1

Version

0.0.2

License

MIT

Unpacked Size

7.17 kB

Total Files

5

Last publish

Collaborators

  • nikxda
  • splittydev