Files
Ilya Shpigor 81254606dd Minor fixes
2021-03-14 12:22:29 +01:00

19 lines
264 B
Bash

#!/bin/bash
operation="$1"
case "$operation" in
"-a")
find Documents -name "*.pdf" -type f -print0 | xargs -0 bsdtar -c -j -f documents.tar.bz2
;&
"-c")
cp documents.tar.bz2 ~/backup
;;
*)
echo "Invalid option"
exit 1
;;
esac