Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanskun/gh-langs
Get a list of languages used by the target account. GitHub CLI Extensions
https://github.com/yanskun/gh-langs
gh-extension language
Last synced: 15 days ago
JSON representation
Get a list of languages used by the target account. GitHub CLI Extensions
- Host: GitHub
- URL: https://github.com/yanskun/gh-langs
- Owner: yanskun
- Created: 2024-05-04T07:28:47.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-01-30T13:49:29.000Z (22 days ago)
- Last Synced: 2025-01-31T17:09:49.966Z (21 days ago)
- Topics: gh-extension, language
- Language: Go
- Homepage:
- Size: 54.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gh-langs
GitHub CLI commands extension.Outputs the number of lines for each language in the target account.
## Install
```shell
gh extension install yanskun/gh-langs
```## Usage
```shell
# login user
gh langs
# arg
gh langs octocat
+------------+---------+
| LANGUAGE | LINES |
+------------+---------+
| Ruby | 204,865 |
| CSS | 14,950 |
| HTML | 4,338 |
| Shell | 910 |
| JavaScript | 48 |
+------------+---------+
https:github.com/octocat has 8 repositories
Last updated after 2023-05-04
```### Options
```
-f, --filter float a float used to filter results (default 1)
``````shell
gh langs octocat -f 0.5
+------------+---------+
| LANGUAGE | LINES |
+------------+---------+
| Ruby | 204,865 |
| CSS | 14,950 |
| HTML | 4,338 |
| Shell | 910 |
| JavaScript | 48 |
+------------+---------+
https:github.com/octocat has 8 repositories
Last updated after 2023-11-02
```