skripty/_publikuj.sh
author František Kučera <franta-hg@frantovo.cz>
Sun, 26 Jul 2020 18:13:48 +0200
branchv_0
changeset 304 95add699346d
parent 129 36c2e2bc2eb4
permissions -rwxr-xr-x
css: Latin Modern Sans + Latin Modern Mono (in <code/>) + DejaVu Sans Mono (in <pre/> due to box-drawing)

#!/bin/bash

SKRIPT=`dirname $0`/publikuj.sh

if [ -f $SKRIPT ]; then
    $SKRIPT;
else
    echo "Vytvořte skript s názvem $SKRIPT s obsahem např.:"
    echo '
#!/bin/bash
SERVER="www.example.com";
ADRESAR="/var/www/example.com/";
rsync -av výstup/ $SERVER:$ADRESAR
'
fi