Skip to content

Instantly share code, notes, and snippets.

@rafinetiz
Created July 31, 2019 17:07
Show Gist options
  • Save rafinetiz/94bb198c108ed6b60cf656f85627e958 to your computer and use it in GitHub Desktop.
Save rafinetiz/94bb198c108ed6b60cf656f85627e958 to your computer and use it in GitHub Desktop.
Temporary Fix Termux Busybox missing applets
#!/data/data/com.termux/files/usr/bin/bash
for applets in $(busybox --list);
do
echo -e "> Menginstall \e[32m$applets\e[0m"
ln -s -f $PREFIX/bin/busybox $PREFIX/bin/applets/$applets
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment