mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-14 19:08:04 +00:00
![pancake](/assets/img/avatar_default.png)
- add missing sys/gtk.sh * Define TODO for 0.8.6 * Add URL attribute in dot graphs for 'ag' command - as requested by @hteso for bokken * Empty graphs are now printing nothing to stdout - same as above
15 lines
262 B
Bash
Executable File
15 lines
262 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=...' > ~/.r2farmrc"
|
|
exit 1
|
|
fi
|
|
|
|
rsync -avz farm/${LOGDIR}/* ${REMOTEDIR}
|