14 lines
467 B
Bash
Executable File
14 lines
467 B
Bash
Executable File
#!/bin/sh
|
|
|
|
######################################################################
|
|
# @author : swytch
|
|
# @file : webupdate
|
|
# @license : GPLv3
|
|
# @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'
|