Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8715057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T05:45:22+00:00 2026-06-13T05:45:22+00:00

I’m writing a bash script to send backups to a remote ftp server. The

  • 0

I’m writing a bash script to send backups to a remote ftp server. The backup files are generated with a WordPress plugin so half the work is done for me from the start.

The script does several things.

  1. It looks in the local backup dir for any files older than x and deletes them
  2. It connects to FTP and puts the backup files in a dir with the current date as a name
  3. It deletes any backup dirs for backups older than x

As I am not fluent in bash, this is a mishmash of a bunch of scripts I found around the net.

Here is my script:

#! /bin/bash 

BACKDIR=/var/www/wp-content/backups

#----------------------FTP Settings--------------------#

FTP=Y

FTPHOST="host"
FTPUSER="user"
FTPPASS="pass"
FTPDIR="/backups"
LFTP=$(which lftp)      # Path to binary

#-------------------Deletion Settings-------------------#

DELETE=Y

DAYS=3 # how many days of backups do you want to keep?

TODAY=$(date --iso) # Today's date like YYYY-MM-DD
RMDATE=$(date --iso -d  $DAYS' days ago') # TODAY minus X days - too old files

#----------------------End of Settings------------------#

if  [ -e $BACKDIR ]
then

if  [ $DELETE = "Y" ]
then
    find $BACKDIR -iname '*.zip' -type f -mtime +$DAYS -delete
    echo "Old files deleted."
fi

if  [ $FTP = "Y" ]
then

    echo "Initiating FTP connection..."

    cd $BACKDIR

    $LFTP << EOF
    open ${FTPUSER}:${FTPPASS}@${FTPHOST}
    mkdir $FTPDIR
    cd $FTPDIR
    mkdir ${TODAY}
    cd ${TODAY}
    mput *.zip
    cd ..
    rm -rf ${RMDATE}
    bye

EOF

echo "Done putting files to FTP."

fi

else
    echo "No Backup directory."
    exit
fi

There are 2 specific things I can’t get done:

  1. The find command doesn’t delete any of the old files in the local backup dir.
  2. I would like mput to only put the .zip files that were created today.

Thanks in advance for the help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T05:45:23+00:00Added an answer on June 13, 2026 at 5:45 am

    To send only zip files that were created today:

    MPUT_ZIPS="$(find $BACKDIR -iname '*.zip' -type f -maxdepth 1 -mtime 1 | sed -e 's/^/mput /')"
    
    [...]
    $LFTP << EOF
    open ${FTPUSER}:${FTPPASS}@${FTPHOST}
    mkdir $FTPDIR
    cd $FTPDIR
    mkdir ${TODAY}
    cd ${TODAY}
    ${MPUT_ZIPS}
    cd ..
    rm -rf ${RMDATE}
    bye
    
    EOF
    

    Hope this helps =)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a small JavaScript validation script that validates inputs based on Regex. I
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have an autohotkey script which looks up a word in a bilingual dictionary
I am writing an app with both english and french support. The app requests
I have thousands of HTML files to process using Groovy/Java and I need to
I would like my Web page http://www.gmarks.org/math_in_e-mail.txt on my Apache 2.2.14 server to display
I have a bunch of posts stored in text files formatted in yaml/textile (from
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.