mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
15 lines
203 B
Bash
Executable File
15 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# usage: $0 machine
|
|
|
|
if [ $# != 1 ]; then
|
|
echo "usage: $0 machine"
|
|
exit 1
|
|
fi
|
|
|
|
unset DISPLAY
|
|
script=/a/asami/portbuild/scripts/doupgrademach
|
|
|
|
scp -q -p $script $1:$script
|
|
ssh -n $1 $script
|