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 | |
while : | |
do | |
wget -O - http://ipv4.download.thinkbroadband.com/512MB.zip | |
done |
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 | |
# | |
#Android ADB Installer 2.1 for Ubuntu 11.10 and Arch Linux. | |
#Version 2.2 adds multi-distro support for Arch Linux. Ability to compile AOKP from source. | |
#Script written by @ArchDukeDoug and parts of @_CorCor67's scripting code used with permission as well. | |
#ADB Push script adapted to work from MappaM and pietro_spina's code on the xda-developer's forums. | |
#Thanks to @BoneyNicole, @tabbwabb, and @animedbz16 for putting up with me and proofreading and/or testing the script. | |
#Script version: 2.2 | |
OS=`lsb_release -i | grep Distribu | awk {'print $3}'` | |
menu= |
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 | |
# | |
#Android ADB Installer 2.1 for Linux Mint 11 and Ubuntu 11.04 | |
#New: MTP Support and adb right click to push support | |
#Script written by @ArchDukeDoug and parts of @_CorCor67's scripting code used with permission as well. | |
#ADB Push script adapted to work from MappaM and pietro_spina's code on the xda-developer's forums. | |
#Thanks to @BoneyNicole, @tabbwabb, and @animedbz16 for putting up with me and proofreading and/or testing the script. | |
#Script version: 2.1 | |
menu= |
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 | |
# | |
#Android ADB Installer 2 for Linux Mint 11 and Ubuntu 11.04 | |
#This version is intended to be an improvement on previous version and give the user more installation options and bring more ease to people that want to develop, | |
#theme, or just whatever other purpose you may want to use something that is in my script for. | |
#Script written by @ArchDukeDoug and parts of @_CorCor67's scripting code used with permission as well. | |
#Thanks to @BoneyNicole, @tabbwabb, and @animedbz16 for putting up with me and proofreading and/or testing the script. | |
#Script version: 2.0.0 | |
menu= |
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 | |
# | |
#Automatically updates the 99-android.rules file | |
i=$(cat /proc/$PPID/cmdline) | |
if [[ $UID != 0 ]]; then | |
echo "Please type sudo $0 $*to use this." | |
exit 1 | |
fi | |
#Create and update the etc/udev/rules.d/99-android.rules file |
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 | |
#Script for ASUS Transformer | |
#Moves Antipaper Notes HD notebooks to the SD Card and sets the storage up a symbolic link on the device to move all future notebooks to the SD Card. | |
#Script created by @ArchDukeDoug | |
cd / | |
mkdir /Removable/MicroSD/Antipaper | |
mkdir /Removable/MicroSD/Antipaper/Notebooks | |
cp -f /data/data/com.pancerola.and.antipaper.notes/files/* /Removable/MicroSD/Antipaper/Notebooks | |
rm -R /data/data/com.pancerola.and.antipaper.notes/files/ |
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 | |
#PACMAN VERSION <.......@.... | |
#This script is designed to install the Android SDK, NDK, and Eclipse in Linux Mint 11 (and now revised for Arch Linux) and make it easier for people that want to develop for Android using Linux. | |
#Script written by @ArchDukeDoug with special thanks to @BoneyNicole, @tabbwabb, and @animedbz16 for putting up with me and proofreading and/or testing the script. | |
#I can be reached at [email protected], twitter, or linuxrandomly.blogspot.com | |
#Script version: 1.0.5 | |
#Changelog: 1.0.5 - Fixed the Android SDK search parameters to fit the new naming scheme on http://developer.android.com/sdk | |
i=$(cat /proc/$PPID/cmdline) | |
if [[ $UID = 0 ]]; then | |
echo "Please execute this script by typing only $0 $*because it cannot be run as the root user." |
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 | |
# | |
#Installer for Android SDK and NDK | |
#Twitter: @ArchDukeDoug | |
i=$(cat /proc/$PPID/cmdline) | |
if [[ $UID != 0 ]]; then | |
echo "Please type sudo $0 $*to use this." | |
exit 1 | |
fi |
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 | |
# | |
#This script is designed to install the Android SDK, NDK, and Eclipse in Linux Mint 11 and make it easier for people that want to develop for Android using Linux. | |
#Script written by @ArchDukeDoug with special thanks to @BoneyNicole, @tabbwabb, and @animedbz16 for putting up with me and proofreading and/or testing the script. | |
#I can be reached at [email protected], twitter, or linuxrandomly.blogspot.com | |
#Script version: 1.0.5 | |
#Changelog: 1.0.5 - Fixed the Android SDK search parameters to fit the new naming scheme on http://developer.android.com/sdk | |
i=$(cat /proc/$PPID/cmdline) | |
if [[ $UID != 0 ]]; then | |
echo "Please type sudo $0 $*to use this." |