2024-10-19 09:20:20 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Usage: $0 <destination_path>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
destination_path=$1
|
2024-10-19 09:32:11 +00:00
|
|
|
chmod 600 app/utils/transfer-key
|
2024-10-19 09:20:20 +00:00
|
|
|
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"
|