(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/system/bin/sh | |
| export LD_LIBRARY_PATH=/data/data/com.termux/files/usr/lib | |
| export PATH=/data/data/com.termux/files/usr/bin:/data/data/com.termux/files/usr/bin/applets | |
| CONF=/sdcard/ADM/.config/Aria2/aria2.conf | |
| NG=/sdcard/ADM/.config/AriaNg-1.1.4 | |
| start_service() { | |
| if [[ "$(pidof 'aria2c')" == "" ]]; then | |
| aria2c --conf-path="$CONF" |
| wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.