$ ./get-subscriber-count
2.91K subscribers
Created
September 1, 2021 02:39
-
-
Save bahamas10/79aef17342af416e8731bc647c558eb7 to your computer and use it in GitHub Desktop.
Quick and dirty youtube subscriber count getter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # set to the about page of your channel | |
| url='https://www.youtube.com/c/bahamas10/about' | |
| curl -sS "$url" | perl -wln -e '/"subscriberCountText":\{[^}]+"label":"([^"]+)"/ and print $1;' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment