backup


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting backup
# 1  
Old 11-21-2002
backup

is there a script that will do the following

1) i have two folders.I use one and the others a backup.can i get a script (perl script for win98) that whenever i put stuf into one folder it will back it up to the backup folder
# 2  
Old 11-21-2002
perl is not my domain but...

you need to have a daemon service for that... what you are asking is an event driven back up... I know a command line application for NT called "Hannibal" (which of course is not free) which can sniff events such as file creations/modifications on certain watched folders on watched drives on watched machines and so on...

the only other recourse it seems is writing your own daemons for such events...

Cheers!
Vishnu.
# 3  
Old 11-22-2002
OK - this sounds VERY much like a homework question! However, I'll give you the gist of teh script - which is UN-TESTED!!!

It's a crude answer to your question, so it wont backup amended files (you'll have to add the code for that). All it will do is make a copy of any new file created in the target directory! Make sure you test it, etc....
Code:
#!/perl/bin/perl

# --------------------------------------------------------------
# Creates a backup in a specified folder of each file in a
# target folder


#set this to your backup folder
$backupFolder = "c:\backup";

#set this to the folder you want to track
$trackFolder = "c:\documents";

while (1) {
  opendir(TARGETFOLDER, $trackFolder);
  @files = readdir(TARGETFOLDER);
  closedir(TARGETFOLDER);

  opendir(BACKUPFOLDER, $backupFolder);
  @filesToo = readdir(BACKUPFOLDER);
  closedir(BACKUPFOLDER);
  
  $found = 0;
  
  # compare files found within each folder
  foreach $targetFile (@files) {
    foreach $backupFile (@filesToo) {
      if ($targetFile eq $backupFile) {
        $found = 1;
      }
    }

    if ($found == 0) {
      system "copy ${trackFolder}\\${targetFile} ${backupFolder}";
    }

  }
  # sleep for 10 minutes before comparing files again
  sleep 600;
}

# 4  
Old 11-22-2002
Thanks. Its not homwork. IAM only 14 years old!

Not studying computer science yet !!!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. 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

2. Shell Programming and Scripting

rsync backup mode(--backup) Are there any options to remove backup folders on successful deployment?

Hi Everyone, we are running rsync with --backup mode, Are there any rsync options to remove backup folders on successful deployment? Thanks in adv. (0 Replies)
Discussion started by: MVEERA
0 Replies

3. UNIX for Advanced & Expert Users

backup a file and keep every version of the backup

I am trying to backup my .bash_history and I want to keep every version of the backup. I am thinking to put one of these in my crontab. 0 0 * * 0,3 cat .bash_history > boo 0 0 * * 0,3 cp .bash_history boo I would like the backups to be called boo1, boo2, boo3, etc. I would like to keep... (7 Replies)
Discussion started by: cokedude
7 Replies

4. AIX

backup

hi seniors today i took a backup using tar cmd in this i took two files for backup,backup was done succesfully but while viewing using tar -tvf ------- its showiing only one file at a time and i took backup in /etc/hosts,/etc/sen/nes (7 Replies)
Discussion started by: senmak
7 Replies

5. UNIX for Advanced & Expert Users

Backup to CD ????? any one know how to do ???

hi, am trying to backup data on cd, cuz i don not have tape device....!!! i've rewritable CDROM, am using solaris 10 for x86 on vmware ..... how to make a backup data to a cd_rom againist to tape ? # ufsdump 0f cd_rom (1 Reply)
Discussion started by: sasame
1 Replies

6. SCO

Backup to SCSI Tape Backup aborts

I am trying to make a full backup of my system using the cpio command. The Tape Unit is a SCSI DDS. The process started fine but after about 30 minutes, it just stopped and showed the following message: 1755 Signal 31 - Core dumped Any idea of what is causing this and how to fix it? ... (4 Replies)
Discussion started by: zionpc
4 Replies

7. UNIX for Dummies Questions & Answers

Check backup file size on backup tape

Hi, I performed backup on tape and I want to append more files to my previous backup on the same backup tape. But before I do that I need to know the backup file size of the first backup I performed so that I know the available size on the backup tape. Can someone help me what command I will use... (0 Replies)
Discussion started by: ayhanne
0 Replies

8. UNIX for Dummies Questions & Answers

Backup

Dear All I have an HP 9000/800 UNIX machine , I have also Oracle applications 11i installed on it , we tried to take backup using fbackup command but it skipped some files ( was for database and the database was up and running ) but it took the other database files. I need to know also ,... (2 Replies)
Discussion started by: hisham.hamdy
2 Replies

9. UNIX for Dummies Questions & Answers

regarding backup

hi i wanna know that is any such type of backup possible in Solaris or AIX that if my system crashes and i had to format the server.........then i shud be able to build the server with that backup only...........if so how thx (3 Replies)
Discussion started by: girish_shukla
3 Replies
Login or Register to Ask a Question