Advertisement
Jackspade9624

uninstall.sh

Apr 17th, 2025 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. cd $HOME
  2.  
  3. rm -rf anonybash
  4. rm -rf ~/.bashrc
  5. rm -rf ~/.termux/termux.properties
  6. rm -rf ~/.termux/colors.properties
  7. touch ~/.termux/termux.properties
  8. touch ~/.termux/colors.properties
  9.  
  10. sed -i '$d' /data/data/com.termux/files/usr/etc/profile
  11.  
  12. rm -rf /data/data/com.termux/files/usr/etc/motd
  13. touch /data/data/com.termux/files/usr/etc/motd
  14.  
  15. echo "Welcome to Termux!
  16.  
  17. Donate: https://termux.dev/donate
  18. Docs: https://termux.dev/docs
  19. Community: https://termux.dev/community
  20.  
  21. Working with packages:
  22.  
  23. - Search: pkg search <query>
  24. - Install: pkg install <package>
  25. - Upgrade: pkg upgrade
  26.  
  27. Subscribing to additional repositories:
  28.  
  29. - Root: pkg install root-repo
  30. - X11: pkg install x11-repo
  31.  
  32. For fixing any repository issues,
  33. try 'termux-change-repo' command.
  34.  
  35. Report issues at https://termux.dev/issues" > /data/data/com.termux/files/usr/etc/motd
  36.  
  37. termux-reload-settings
  38.  
  39. clear && exit
  40.  
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement