FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
awesome-python-code-formatters/list-archived.sh at patch-1 · NPueyo/awesome-python-code-formatters · GitHub
NPueyo
/
awesome-python-code-formatters
Public
forked from
life4/awesome-python-code-formatters
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
awesome-python-code-formatters
/
list-archived.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
12 lines (11 loc) · 359 Bytes
Breadcrumbs
awesome-python-code-formatters
/
list-archived.sh
Copy path
File metadata and controls
executable file
·
12 lines (11 loc) · 359 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
#!
/usr/bin/env bash
#
A little bit of bad bash magic to list all archived repositories.
cat README.md \
|
grep -oE
'
https://github.com/(.+?)\)
'
\
|
cut -d/ -f 4,5 \
|
cut -d# -f 1 \
|
cut -d
'
)
'
-f 1 \
|
xargs -I % gh repo view % \
--jq
'
"\(.name) \(.isArchived)"
'
--json name,isArchived \
|
grep
'
true
'
\
|
cut -d
'
'
-f 1
Back
|
FazBrowse Home
|
New Git URL