10 lines
296 B
Bash
10 lines
296 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Usage: $0 <destination_path>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
destination_path=$1
|
||
|
rsync -avzP --ignore-times --no-compress -e "ssh -i app/utils/transfer-key -p 60213" main@46.188.39.143:/home/main/downloads/qwen2.5-7b-instruct-hse-fine-tuned.tar.gz "$destination_path"
|