Wget in Android terminal

How can I use the wget command in an Android Terminal Emulator app in Android. It says / system / bin / sh: wget: not found. This means you need to install wget in android. Please help me.

+8
source share
4 answers

You need to install busybox on your Android system, then you can execute the wget command, try to get it from the play store

root@android :/ # busybox wget 
+4
source

There is no wget bit in Android, you should get this information from the error message. So you need to install wget first. Try using this link: https://jacob.hoffman-andrews.com/android/wget/

+2
source

At least on Lollipop for me (maybe earlier?) There is curl , an alternative to wget for many cases.

0
source

copier of httrack site in playstore

0
source

Source: https://habr.com/ru/post/977817/


All Articles