Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghurtchu/cut
:scissors: :page_facing_up: :knife: unix cut clone
https://github.com/ghurtchu/cut
cut functional-programming scala unix
Last synced: 5 days ago
JSON representation
:scissors: :page_facing_up: :knife: unix cut clone
- Host: GitHub
- URL: https://github.com/ghurtchu/cut
- Owner: Ghurtchu
- Created: 2023-08-26T17:26:29.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-13T21:01:12.000Z (10 months ago)
- Last Synced: 2024-01-14T06:12:13.521Z (10 months ago)
- Topics: cut, functional-programming, scala, unix
- Language: Scala
- Homepage:
- Size: 5.33 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Build your own cut
https://codingchallenges.substack.com/p/coding-challenge-4
Setting up and testing:
- run: `cd ~`
- clone the repo
- run: `cd cut`run the following commands for testing:
- `./cut -f2 sample.tsv`
- `./cut -f1,2,3 fourchords.csv`
- `./cut -f1,2,3 -d, fourchords.csv | head -n5`
- `./cut -f1,2 sample.tsv`
- `./cut -f1,2,3 sample.tsv | uniq | ./wc -l`
- `./cut -f1,2,3 -d, fourchords.csv | uniq | ./wc -l`Example screenshot on my own machine:
![My Image](example.png)