Simple Scripts!

Posted on Tue 23 July 2019 in Technology • Tagged with Linux, shell-script

Backup using shell script (this example weblogic domain)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/bin/bash -e
set -euf -o pipefail
echo "Starting Backup"
DATE=`date +%Y-%m-%d-%H.%M.$$`
echo "Starting Backup, except *.tar extensions"
tar -zcvf blog-"${DATE …

Continue reading