Advertisement
Guest User

Script Test

a guest
Sep 29th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.18 KB | None | 0 0
  1. #!/bin/bash/
  2. #SourBlue 2014
  3. echo "Just a test!"
  4.  
  5. if [ dpkg -s vlc ]; then
  6.     echo "VLC already installed"
  7. else
  8.     echo "VLC will be installed!"
  9.     sudo apt-get install vlc
  10. fi
  11. exit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement