Advertisement
0xCor3

Shell Bot installer

Apr 11th, 2019
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.57 KB | None | 0 0
  1. #!/bin/bash
  2. echo "Installing nodejs"
  3. sudo apt-get update && sudo apt-get install nodejs -y
  4. echo "Installing npm"
  5. sudo apt-get install npm -y
  6. echo "Auto configure...."
  7. sudo apt-get update && sudo apt-get install build-essential libssl-dev -y
  8. wget https://raw.githubusercontent.com/creationix/nvm/master/install.sh && bash install.sh
  9. source ~/.profile
  10. nvm ls-remote
  11. nvm install 8.9.1
  12. nvm use 8.9.1
  13. echo "DONE..."
  14. echo "Installing bot..."
  15. sudo apt-get install build-essential git -y
  16. git clone https://github.com/botgram/shell-bot.git
  17. cd shell-bot
  18. npm install
  19. node server
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement