Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/bin/bash
  2. clear
  3. echo -e "Kali Update Script"
  4. echo "Press ENTER to continue, CTRL+C to abort."
  5. read input
  6. echo -e "Updating Kali. Please wait…"
  7. apt-get update -y && apt-get upgrade -y && apt-get dist-upgrade -y
  8. echo -e "Kali is now up to date.\n\n"
  9. echo -e "Cleaning Kali. Please wait."
  10. apt-get autoclean -y && apt-get clean -y
  11. apt-get autoremove
  12. echo -e "Kali is ready!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement