7 lines
139 B
Bash
7 lines
139 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "directory of the slpit tar file"
|
||
|
read dir
|
||
|
|
||
|
cat $dir/backup.tar.gz.enc.* | openssl enc -d --aes256 --in - | tar -xvzpf -
|