Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # JANGAN RECOD GAN GW CAPEK BUAT NYA HARGAI PEMBUATNYA !
- MERAH="\e[91m"
- BL='\033[94m' # blue
- BANNER() {
- curl -s http://rec.widhitools.ga/api/pesan 2>/dev/null
- }
- function Dat() {
- read -p "Masukkan Username => " url;
- if [[ $url == "Not Found" ]];
- then
- printf "tidak ketemu\n"
- else
- url="curl -s https://api.github.com/users/$url"
- log=$($url | grep 'login')
- Id=$($url | jq -r .id)
- node_id=$($url | jq -r .node_id)
- avat=$($url | jq -r .avatar_url)
- grav=$($url | jq -r .gravatar_id)
- gists_url=$($url | jq -r .gists_url)
- starred_url=$($url | jq -r .starred_url)
- repos_url=$($url | jq -r .repos_url)
- type=$($url | jq -r .type)
- site_admin=$($url | jq -r .site_admin)
- company=$($url | jq -r .company)
- blog=$($url | jq -r .blog)
- location=$($url | jq -r .location)
- email=$($url | jq -r .email)
- bio=$($url | jq -r .bio)
- followers=$($url | jq -r .followers)
- following=$($url | jq -r .following)
- starred_url=$($url | jq -r .starred_url)
- organizations_url=$($url | jq .organizations_url)
- clear;
- printf "$MERAH"
- cat << 'BANNER'
- ____ _ _ _ _
- / ___(_) |_| |__ _ _| |__
- | | _| | __| '_ \| | | | '_ \
- | |_| | | |_| | | | |_| | |_) |
- \____|_|\__|_| |_|\__,_|_.__/
- CREATE BY WIDHI
- VERSION BASH
- BANNER
- printf "$BL"
- printf "LOGIN USER => $log \n"
- printf "ID USERS => $Id \n"
- printf "NODE ID => $node_id \n"
- printf "AVATAR LINK => $avat \n"
- printf "GRAVATAR ID => $gravatar_id \n"
- printf "GITSTS_URL => $gists_url \n"
- printf "STARRED => $starred_url \n"
- printf "REPO => $repos_url \n"
- printf "TIPE => $type \n"
- printf "Site Admin => $site_admin \n"
- printf "COMPANY => $company \n"
- printf "BLOG => $blog \n"
- printf "LOkASI => $location \n"
- printf "EMAIL NYA => $email \n"
- printf "BIO NYA => $bio \n"
- printf "FOLLOWERS => $followers \n"
- printf "FOLLOWING => $following \n"
- printf "STARRED => $starred_url \n"
- printf "ORANIZATIONS => $organizations_url \n"
- fi
- }
- BANNER
- Dat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement