mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-07 13:51:16 +00:00
a832ca0555
- Results pushed to http://radare.org/farm
16 lines
317 B
Bash
Executable File
16 lines
317 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# find root
|
|
cd `dirname $PWD/$0` ; cd ..
|
|
|
|
. ./farm/CONFIG
|
|
|
|
if [ -z "${REMOTEDIR}" ]; then
|
|
echo "# You have to setup the REMOTEDIR var in your config var"
|
|
echo "echo 'REMOTEDIR=user@host:/path/remote/dir' > ~/.r2farmrc"
|
|
exit 1
|
|
fi
|
|
|
|
echo rsync -avz farm/log/ ${REMOTEDIR}
|
|
rsync -avz farm/log/ ${REMOTEDIR}
|