Advertisement
Guest User

Untitled

a guest
May 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.49 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. updateAndUpgrade(){
  4.     sudo apt update -y
  5.     sudo apt upgrade -y
  6. }
  7.  
  8. installBasics(){
  9.     sudo apt install vim emacs tmux git htop ffmpeg youtube-dl vlc simplescreenrecorder nettools -y
  10.     wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
  11.     sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
  12.     sudo apt update -y
  13.     sudo apt install google-chrome-stable
  14. }
  15.  
  16. $1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement