Skip to content

Instantly share code, notes, and snippets.

@bluesku
Last active April 18, 2021 21:26
Show Gist options
  • Save bluesku/f34386f96c4651214b3d34c04e724751 to your computer and use it in GitHub Desktop.
Save bluesku/f34386f96c4651214b3d34c04e724751 to your computer and use it in GitHub Desktop.
Backup-OS-linux.sh
#! /bin/sh
mkdir -p '/backup' ; mpath='/backup'
rsync -nav --progress /var/log/ $mpath
rsync -nav --progress /home $mpath
rsync -nav --progress /root $mpath
rsync -nav --progress /etc $mpath
rsync -nav --progress /opt $mpath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment