https://github.com/assafmo/nbarecap
Get links for today's NBA recaps from NBA.com and ESPN
https://github.com/assafmo/nbarecap
Last synced: 8 months ago
JSON representation
Get links for today's NBA recaps from NBA.com and ESPN
- Host: GitHub
- URL: https://github.com/assafmo/nbarecap
- Owner: assafmo
- License: mit
- Created: 2018-01-14T10:22:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-17T07:55:30.000Z (over 6 years ago)
- Last Synced: 2025-02-10T01:37:44.252Z (over 1 year ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NBARecap
Get links for today's NBA recaps from NBA.com and ESPN
# Installation
```bash
sudo apt install jq xargs -y
curl -sSLf https://raw.githubusercontent.com/assafmo/NBARecap/master/nba_com_recaps.sh | sudo tee /usr/local/bin/nba_com_recaps > /dev/null
curl -sSLf https://raw.githubusercontent.com/assafmo/NBARecap/master/espn_nba_recaps.sh | sudo tee /usr/local/bin/espn_nba_recaps > /dev/null
sudo chmod +x /usr/local/bin/espn_nba_recaps /usr/local/bin/nba_com_recaps
```
# Usage Examples
```bash
# Print today's links
espn_nba_recaps
# Print today's links
nba_com_recaps
# Download and can start watching immediately from filesystem (usually faster)
espn_nba_recaps | xargs -n 1 aria2c -c -s 8 -x 8 -k 1M --stream-piece-selector=inorder
nba_com_recaps | xargs -n 1 aria2c -c -s 8 -x 8 -k 1M --stream-piece-selector=inorder
```