home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CHIP_CD_2005-02.iso / bonus / back / files / backup.sh next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2004-12-21  |  135 b   |  7 lines

  1. #!/bin/sh
  2.  
  3. cd /backup && rm -f ./*.tar
  4. tar -vcf up`date +%F`.tar D:/work --exclude-from=./exclude.conf
  5. gzip -9 up`date +%F`.tar
  6.  
  7.