generated from polymech/site-template
10 lines
237 B
Bash
10 lines
237 B
Bash
#!/bin/bash
|
|
|
|
# Example script for Google Drive operations using rclone
|
|
|
|
# Define local and remote paths
|
|
LOCAL_DIR="./dist"
|
|
GDRIVE_DIR="library.polymech.info:/httpdocs"
|
|
|
|
rclone copy "${LOCAL_DIR}" "${GDRIVE_DIR}" --progress --transfers 4
|