Advertisement
fimas

Untitled

Jun 4th, 2019
95
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. # Only works for debian distributions
  3. #
  4. # USAGE: $ script.sh /folder/to/share
  5. #
  6.  
  7. sudo apt-get update
  8. sudo apt-get install python3
  9.  
  10. cd "$@"
  11.  
  12. python3 -m http.server
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement