Skip to content
Snippets Groups Projects
Commit aa4c9413 authored by Thorsten Wißmann's avatar Thorsten Wißmann :guitar:
Browse files

Add install-remote.sh helper script

parent 15e273f9
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# install everything on a remote machine
[ -e FaCT++ ] || wget http://wwwcip.cs.fau.de/~re06huxa/pkg/FaCT++
files=(
coalg
coalgcompare
FaCT++
fact.conf
)
# $(ldd $(which FaCT++) | cut -d' ' -f3)
# $(ldd coalg | cut -d' ' -f3)
# $(ldd coalgcompare | cut -d' ' -f3)
echo "==> sending files:"
printf ":: %s\n" "${files[@]}"
rsync --copy-links -rv "${files[@]}" "$1:/${2:-/var/tmp/re06huxa/}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment