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

https://github.com/foriequal0/linqsh

I don't know why this should exist, but I made this.
https://github.com/foriequal0/linqsh

Last synced: about 1 month ago
JSON representation

I don't know why this should exist, but I made this.

Awesome Lists containing this project

README

        

# linqsh
I don't know why this should exist, but I made this.

# usage
## example file item_group
```
group list
-------|------
00000 a.lst
00001 b.lst
00002 c.lst
00003 b.lst
```

## example
```bash
$ export FS='\t'
$ export RS='\n'
$ cat item_group | tail -n+3 | from_stdin | filter x 'grep -e item1 -f $x2' | foreach 'echo $1'
00001
00002
```