New Script: backity.sh

This commit is contained in:
silvernode 2015-09-03 00:25:02 -07:00
parent 71a42bcdfc
commit b0ce38a64d

View File

@ -0,0 +1,14 @@
#!/bin/bash
localBackup(){
echo -n "Directory or file to backup: "
read input
echo -n "Output directory: "
read output
duplicity -v ${input} file//${output}
}
localBackup