Advertisement
thesuhu

Deploy Frontend

Mar 9th, 2023
811
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.18 KB | None | 0 0
  1. #!/bin/sh
  2. unzip dist.zip -d html
  3.  
  4. ls /var/www
  5. rm -rf /var/www/html_old
  6.  
  7. ls /var/www
  8. mv /var/www/html /var/www/html_old
  9.  
  10. ls /var/www
  11. rsync -a html /var/www/
  12.  
  13. ls /var/www
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement