Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ opt_install () {
echo "alias adb-toolkit='cd $PWD && sudo bash ADB-Toolkit.sh'" >> ~/.bash_aliases
source ~/.bash_aliases
echo -e "\n\e[1;92mINSTALLATION COMPLETED\n"
echo -e "\e[1;92mUSAGE = \e[1;91m'sudo ./ADB-Toolkit.sh' or you can do 'sudo adb-tookit' from anywhere in shell\e[0m\n\n"
echo -e "\e[1;92mUSAGE = \e[1;91m'sudo ./ADB-Toolkit.sh' or you can do 'sudo adb-toolkit' from anywhere in shell\e[0m\n\n"

fi

Expand Down
6 changes: 3 additions & 3 deletions modules/opt16
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ remote_shell () {
dev_1_remo () {

devvv=$(echo "$dev_1")
echo -e "\n\e[1;93mMake sure that the device \e[1;91m$mod_1 \e[1;93mis connected to the same network in which ADB-Tookit is installed.\n"
echo -e "\n\e[1;93mMake sure that the device \e[1;91m$mod_1 \e[1;93mis connected to the same network in which ADB-Toolkit is installed.\n"
ip_finder
adb -s $dev_1 tcpip 5555 > /dev/null 2>&1
connect_msg=$(adb -s $dev_1 connect $dev_ip) > /dev/null 2>&1
Expand All @@ -79,7 +79,7 @@ dev_1_remo () {
dev_2_remo () {

devvv=$(echo "$dev_2")
echo -e "\n\e[1;93mMake sure that the device \e[1;91m$mod_2 \e[1;93mis connected to the same network in which ADB-Tookit is installed.\n"
echo -e "\n\e[1;93mMake sure that the device \e[1;91m$mod_2 \e[1;93mis connected to the same network in which ADB-Toolkit is installed.\n"
ip_finder
adb -s $dev_2 tcpip 5555 > /dev/null 2>&1
connect_msg=$(adb -s $dev_2 connect $dev_ip) > /dev/null 2>&1
Expand All @@ -98,7 +98,7 @@ dev_2_remo () {
dev_3_remo () {

devvv=$(echo "$dev_3")
echo -e "\n\e[1;93mMake sure that the device \e[1;91m$mod_3 \e[1;93mis connected to the same network in which ADB-Tookit is installed.\n"
echo -e "\n\e[1;93mMake sure that the device \e[1;91m$mod_3 \e[1;93mis connected to the same network in which ADB-Toolkit is installed.\n"
ip_finder
adb -s $dev_3 tcpip 5555 > /dev/null 2>&1
connect_msg=$(adb -s $dev_3 connect $dev_ip) > /dev/null 2>&1
Expand Down