add persist script to compare dirs for impermanence

This commit is contained in:
Dmitriy Kholkin 2024-06-19 12:55:47 +03:00
parent d326cd0832
commit 6613f56600
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

16
scripts/persist.sh Executable file
View File

@ -0,0 +1,16 @@
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p rsync ripgrep
rsync -amvxx \
--dry-run \
--no-links \
--exclude '/tmp/*' \
--exclude '/root/*' \
/ /persist \
| rg -v '^skipping|/$'
rsync -amvxx \
--dry-run \
--no-links \
--exclude 'ataraxia/.vscode/*' \
/home/ataraxia /persist/home/ataraxia \
| rg -v '^skipping|/$'