Guest User

Untitled

a guest
Dec 11th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if which links > /dev/null
  4. then
  5. echo "Test passed. links is already installed"
  6.  
  7. else
  8. echo "Test failed. links is not installed, installing now..."
  9. echo "apt-get -y install links"
  10. apt-get -y install links
  11. fi
Add Comment
Please, Sign In to add comment