8 lines
198 B
Bash
8 lines
198 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
while read line
|
||
|
do
|
||
|
echo $line
|
||
|
restic -r rclone:hubic:ChimeraLinux backup $line --exclude-file restic-exclude.txt --password-file /home/lanxu/restic-pass.txt
|
||
|
done < restic-include.txt
|