Page MenuHomec4science

rsync
No OneTemporary

File Metadata

Created
Sat, Jul 27, 19:14
#!/usr/bin/bash
DIRECTORY=/home/astro/revazy/WWW/public/arrakihs/
if [ -d $DIRECTORY ]
then
echo "local sync"
rsync -av _build/html/* $DIRECTORY/.
else
echo "remote sync"
rsync -av _build/html/* revazy@login01.astro.unige.ch:$DIRECTORY/.
fi

Event Timeline