mirror of
https://github.com/kejilion/sh.git
synced 2025-10-03 23:34:20 +08:00
10 lines
413 B
Bash
10 lines
413 B
Bash
#!/bin/bash
|
|
|
|
# Create a tar archive of the web directory
|
|
cd /home/ && tar czvf web_$(date +"%Y%m%d%H%M%S").tar.gz web
|
|
|
|
# Transfer the tar archive to another VPS
|
|
cd /home/ && ls -t /home/*.tar.gz | head -1 | xargs -I {} sshpass -p 123456 scp -o StrictHostKeyChecking=no -P 22 {} root@0.0.0.0:/home/
|
|
|
|
# Keep only 5 tar archives and delete the rest
|
|
cd /home/ && ls -t /home/*.tar.gz | tail -n +4 | xargs -I {} rm {}
|