mirror of
https://github.com/morgan9e/blog
synced 2026-04-13 15:54:06 +09:00
9 lines
101 B
Bash
Executable File
9 lines
101 B
Bash
Executable File
HOST=$1
|
|
if [[ -z $1 ]];
|
|
then
|
|
HOST="web"
|
|
echo $HOST
|
|
fi
|
|
|
|
ssh $HOST /srv/blog/scripts/update.sh
|