File size: 258 Bytes
6c277ab
 
 
 
 
 
 
1
2
3
4
5
6
7
#!/bin/bash

# 备份 /.system 文件
tar -czvf /.backup/.system.tar.gz --exclude-from=/.system/script/exclude_list_system.txt -C /.system .

# 备份 /root 文件
tar -czvf /.backup/root.tar.gz --exclude-from=/.system/script/exclude_list_root.txt -C /root .