14 lines
468 B
Bash
Executable File
14 lines
468 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
######################################################################
|
|
# @author : swytch
|
|
# @file : webupdate
|
|
# @license : MIT
|
|
# @created : Wednesday May 20, 2020 18:27:35 CEST
|
|
#
|
|
# @description : update my website with $HOME/public_html
|
|
######################################################################
|
|
|
|
|
|
rsync -avrP --rsh='ssh' $HOME/public_html swytch@davidjulien.xyz:~/ && notify-send 'davidjulien.xyz' 'website updated'
|