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
function ytd { | |
FORM=$(youtube-dl -F "$1" | grep "(best)") | |
DIM=$(echo $FORM | sed 's/^[0-9][0-9][0-9]*\s*//g' | sed 's/^[a-z0-9][a-z0-9]*\s*//g' | cut -d ' ' -f 1) | |
NUM=$(echo $FORM | cut -d ' ' -f 1) | |
printf "Dimensions are: $DIM\n" | |
youtube-dl -f $NUM "$1" | |
printf "$FORM" &> /tmp/log | |
} |
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/perl | |
use HTTP::Request; | |
use LWP::UserAgent; | |
system("title The JavaHaxor Group"); | |
system("color 1e"); | |
system ("cls"); | |
print " |=======================================================|\n"; | |
print " |= _ ______ _____ =|\n"; | |
print " |= | | | ____|_ _| =|\n"; |
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
#!/bin/bash | |
# Usage : ./scanio.sh <save file> | |
# Example: ./scanio.sh cname_list.txt | |
# Premium | |
function ech() { | |
spinner=( "|" "/" "-" "\\" ) | |
while true; do | |
for i in ${spinner[@]}; do | |
echo -ne "\r[$i] $1" |
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
#!/bin/bash | |
# Bash script to install the latest version of Go (For linux) | |
# Get current version of Go for 64-bit Linux | |
CUR=$(curl -s https://golang.org/dl/ | grep linux-amd64 | grep 'download downloadBox' | cut -d'"' -f4) | |
# Download Go | |
wget $CUR | |
# Get filename |