Sponsored Content
Top Forums Shell Programming and Scripting Email script when automatic backup is finsihed Post 302358362 by ggs on Friday 2nd of October 2009 08:56:17 AM
Old 10-02-2009
Hi Wizard,

Try the following -

Code:
data=`cat $file_in`
tar cf $tarfile $data > /dev/null
res1 = $?
/usr/bin/gzip $tarfile > /dev/null
res2 = $?

if [ $res1 -eq 0 ]  && [ res2 = 0 ]; then
   echo "BackUP & Zip operation successful." > /tmp/mailtext
elif [ $res1 -eq 0 ]; then
   echo "BackUP is successful.  Some issue in Zip operation." > /tmp/mailtext
elif [ $res2 -eq 0]; then
   echo "Backup Failed" > /tmp/mailtext
fi

mailx -s "Backup Result"  <your email id>  < /tmp/mailtext

rm /tmp/mailtext

#Done

 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Automatic script

Hi, is it possible to automatically run a script (bash) when an event occurs? I mean, let's say that I (or one of my users) plug in a flash memory (USB) ... is it possible to run a script every time I do this action (let's say to log user, date and other infos on a file)? Thanks! Bye... (5 Replies)
Discussion started by: TShirt
5 Replies

2. Shell Programming and Scripting

Shell script for sending automatic email to personal mail id

hi guys, I need a shell script to send mail automatically to my personal mail id like xxxx@hotmail.com but while experimenting with "mail" command I faced following problems. cat text1.txt | mail -s 'test mail' xxxx@hotmail.com command successfully executed but while checking for... (4 Replies)
Discussion started by: rrd1986
4 Replies

3. Shell Programming and Scripting

Automatic Email of Log Files in OSX

Hi, I am trying to write a shell script that will take the log files from a single folder (all ending with .log), put them into an archive, use something to encrypt the file, and then emailx to email the resulting encrypted archive to me. Of course, I am open to suggestions on how to improve... (1 Reply)
Discussion started by: DotNaBox
1 Replies

4. Solaris

Automatic backup through DD and crontab

Hi, I have not been working with Solaris for more than 10 years ago. Many things and details have ben forgotten. Hopes that some could help me with the problem. We used this scripts (below) for daily backup. The problems is following: I want to backup all partions/slice on a specific... (4 Replies)
Discussion started by: gjh
4 Replies

5. Shell Programming and Scripting

Script for Automatic Backup System

Hi Guys/ULF, Good day! Can anyone help me on how to create a program which will be used for our backup process and that will run automatically say every 30th day of the Month. Below is the given command to perform a backup process among all nodes/servers within the same cluster. ns cluster... (2 Replies)
Discussion started by: rymnd_12345
2 Replies

6. Shell Programming and Scripting

Help with Backup Shell Script for Network Device Configuration backup

HI all, im new to shell scripting. need your guidence for my script. i wrote one script and is attached here Im explaining the requirement of script. AIM: Shell script to run automatically as per scheduled and backup few network devices configurations. Script will contain a set of commands... (4 Replies)
Discussion started by: saichand1985
4 Replies

7. Shell Programming and Scripting

Email backup log

Hi, I have a server which appends to two different backup logs, a summary and a full log, I want to write a script which will email out this mornings backup, the problem is that in the log files the date is in the below format: Fri May 31,2013 02:30 the summary log file I can just use... (6 Replies)
Discussion started by: Bdoydie
6 Replies

8. Shell Programming and Scripting

Automatic script trigger

Hi, I'm looking for a way to solve the following scenario: A shell should automatically trigger / run when a text file is placed or present at a specific location. My idea - to create a cron / anacron for every minute and inside that i will call a temp script. Temp script will move to my... (9 Replies)
Discussion started by: Gautham
9 Replies

9. Shell Programming and Scripting

Automatic scp Script

I need a script to automatically scp the latest files on DIR1,DIR2 and DIR3 from Source to destination server at same place(DIR1,DIR2 and DIR3) . Further details are: Source Server (192.168.1.5) DIR1 DIR2 DIR3 Destination Server (192.168.1.10) DIR1 DIR2 DIR3 (7 Replies)
Discussion started by: refra
7 Replies
SIMPLIFDCZEROBDD(3)						   BDD functions					       SIMPLIFDCZEROBDD(3)

ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr NAME
simplifDcZeroBdd - simplifies a BDD with don't cares on its off-set part SYNOPSYS
#include "logmmm.h" pNode simplifDcZeroBdd(pBdd1,pBdd2) pNode pBdd1; pNode pBdd2; PARAMETERS
pBdd1 BDD to simplify pBdd2 "don't care" function DESCRIPTION
simplifDcZeroBdd() simplifies pBdd1 with pBdd2. pBdd2 must be included imperatively in the off-set part of pBdd1. This function returns a BDD that depends to the order of the BDD. EXAMPLE
#include "mutnnn.h" /* mbk utilities */ #include "logmmm.h" pNode nodeA,NodeB; pNode res,res1,res2; initializeBdd(SMALL_BDD); nodeA = createNodeTermBdd(3); nodeB = createNodeTermBdd(3); res1 = applyBinBdd(OR,nodeA,nodeB); /* res1 = (OR a b) */ res2 = applyBinBdd(NOR,nodeA,nodeB); /* res2 = (NOR a b) */ res = simplifDcZeroBdd(res1,res2); /* res1 and res2 = 0 */ displayBdd(res,1); /* it will display @res ONE */ destroyBdd(1); SEE ALSO
log(1), bdd(1), simplifDcOneBdd(3), applyBdd(3), notBdd(3), constraintBdd(3), applyBinBdd(3), addListBdd(3), displayBdd(3), createNode- TermBdd(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 SIMPLIFDCZEROBDD(3)
All times are GMT -4. The time now is 06:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy