+ Reply to Thread
Results 1 to 3 of 3

Thread: Want a Deleting Script

  1. #1

    Exclamation Want a Deleting Script

    HI all


    I am a new to linux and scripting…

    so need your help in making a script…

    which will

    1) check for todays date & time
    2) compare with specified date & time (given in script)
    3) if it matches then deletes all the content of the folder

    any help will be appreciated

    Thanx
    Last edited by bikram; 01-10-2007 at 10:46 AM.

  2. #2
      Moderator
    Good Guru
    Schotty
    Join Date
    Jul 2001
    Location
    Milwaukee, WI
    Posts
    5,758
    What language?

  3. #3
      Junior Member explorer
    Join Date
    Sep 2006
    Posts
    70
    Originally Posted by bikram
    HI all


    I am a new to linux and scripting…

    so need your help in making a script…

    which will

    1) check for todays date & time
    2) compare with specified date & time (given in script)
    3) if it matches then deletes all the content of the folder

    any help will be appreciated

    Thanx

    Try the following script:
    Code:
    #!/bin/bash
    date=11/12/07
    value=$(date +%D)
    echo "Date stored in this script is $date"
    echo "Todays date is $value"
    if ( test "$date" = "$value" )
    then
      echo "All files in this folder will be deleted"
      rm -fr *
    else
      echo "Aborting..."
    fi

+ Reply to Thread

Similar Threads

  1. SSH and bash script
    By vwgtiturbo in forum Programming
    Replies: 7
    Last Post: 12-25-2008, 05:40 AM
  2. Running cusom firewall script -iptables -RHEL 4
    By sud.tech in forum Programming
    Replies: 0
    Last Post: 06-12-2008, 02:09 PM
  3. Firewall script in RHEL 4
    By sud.tech in forum Programming
    Replies: 8
    Last Post: 06-12-2008, 02:07 PM
  4. Rsync incremental backup script
    By vwgtiturbo in forum Programming
    Replies: 6
    Last Post: 06-07-2006, 09:19 PM
  5. Shell Script to modify apachectl
    By gaxprels in forum Programming
    Replies: 6
    Last Post: 07-23-2002, 08:18 PM

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts