https://github.com/deepred5/bilibili-anime-cli
A cli tool for bilibili anime
https://github.com/deepred5/bilibili-anime-cli
anime bilibili cli nodejs terminal
Last synced: about 1 year ago
JSON representation
A cli tool for bilibili anime
- Host: GitHub
- URL: https://github.com/deepred5/bilibili-anime-cli
- Owner: deepred5
- Created: 2019-07-22T08:08:05.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-10T03:03:59.000Z (about 5 years ago)
- Last Synced: 2025-04-12T17:40:58.492Z (about 1 year ago)
- Topics: anime, bilibili, cli, nodejs, terminal
- Language: JavaScript
- Size: 17.6 KB
- Stars: 7
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bilibili-anime-cli
哔哩哔哩番剧 命令行工具

## 安装
```bash
npm install -g bili-anime
# OR
yarn global add bili-anime
```
## 命令行参数
```bash
bili-anime -h
Usage: anime [options] [day]
选择获取哪天的新番(yesterday|today(默认)|tomorrow)
Options:
--no-publish 只获取未放送的新番
-l, --limit [amount] 限制展示的条数
-h, --help 输出帮助信息
```
Example:
```bash
bili-anime anime # 获取当天新番
bili-anime anime tomorrow # 获取明天新番
bili-anime anime --no-publish # 获取当天未发布新番
bili-anime anime -l 7 # 只展示7条新番信息
```