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.
- Host: GitHub
- URL: https://github.com/foriequal0/linqsh
- Owner: foriequal0
- Created: 2015-08-30T13:28:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-30T14:46:25.000Z (over 9 years ago)
- Last Synced: 2023-08-04T07:25:32.895Z (almost 2 years ago)
- Language: Python
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```