Lftp mirror pattern


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Lftp mirror pattern
# 8  
Old 03-14-2020
Sorry first time I reply and didn't received any answer I thought I should quote till notify you Smilie)

Main task is Both, last directory by number AND by creation time. If both condition were true then copy content of directory.
# 9  
Old 03-14-2020
Quote:
Originally Posted by nezabudka
The main task was to find the last directory either by number or by creation time.
I still haven't received an answer, we have dealt with the main task or not and which option is right for you.
Just in case, I bring a few and I hope for your detailed answers
and?
did we solve your problem?
If not, then specifically on the code above, write what does not work.

I tried to divide the problem into its component parts. In the first, you need to find the desired directory.
Forget about its contents for now. Write which of the given examples finds the correct directory.
Code:
ls -pt | grep -Em1 '[0-9]{8}/$'
ls -pt | grep -m1 '[0-9]*/$'

# 10  
Old 03-15-2020
Here is my script, and I try every command you mention but it always copy all directories not content of latest with 8 digit number pattern!



Code:
#!/bin/bash
DATE=`date +%Y%m%d -d "1 days ago"`

USER='user'
PASS='pass'

HOST='192.168.1.1'
LOCAL_BACKUP_DIR='/app/'${DATE}''
REMOTE_DIR='/app/log'

mkdir -p '/app/'${DATE}''

lftp -u $USER,$PASS $HOST <<EOF
set ftp:ssl-protect-data true
set ftp:ssl-force true
set ssl:verify-certificate no
cd $REMOTE_DIR
lcd $LOCAL_BACKUP_DIR

mirror --include "$(ls -pt | grep -Em1 '[0-9]{8}/$')"*

quit
EOF


output:
Code:
13991010 
13991011 
13991012 
13991013 
Fabric 
Test 
Test2

expected output:

Code:
customers1 
customers2 
customers3
...


Last edited by indeed_1; 03-15-2020 at 05:05 AM..
# 11  
Old 03-15-2020
I understood what the problem was. We cannot define a locally remote directory

Last edited by nezabudka; 03-15-2020 at 06:16 AM..
# 12  
Old 03-15-2020
ok little confused, would you please write complete script you mean? like what I wrote in previous reply?


Thanks,
# 13  
Old 03-15-2020
I will try to install 'lftp'
This User Gave Thanks to nezabudka For This Post:
# 14  
Old 03-15-2020
I don't know how to say thank you for time that you spend on this post. Smilie

Last edited by indeed_1; 03-15-2020 at 07:59 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Error with LFTP

I use below ftp command to push the file from UNIX server to Mainframe system. (lftp -d -e "set ftp:passive-mode false; put -a ${SPOOLFILE} -o ${FNAME}; exit" -u ${id},${paswd} ${host} ) >> $ftplog To ftp the file successfully i need to get the out put for FNAME as "'filename'" (double... (5 Replies)
Discussion started by: zooby
5 Replies

2. Shell Programming and Scripting

lftp is not working.how to replace lftp with expect utility using same .cfg file.

We have lftp command inside shell file. which is intern calling .cfg file for transferring the file from one server to other. Below command to not working. lftp -e "set net:max-retries 1; set net:reconnect-interval-base 1; put -E -O /destinationdir/inbox/ /sourcedir/test.txt; bye" -u... (4 Replies)
Discussion started by: johnsnow
4 Replies

3. UNIX for Dummies Questions & Answers

Lftp operation

dear all, I need to get files from ftp when only files consist of words 'EUROPE' ftp sources in folder /ftp1/ftp2/ftp3/201409 files inside /ftp1/ftp2/ftp3/201409is as below 201409_EUROPE_citizen.txt 201409_EUROPE_natality.txt 201409_EUROPE_occupancy.txt 201409_ASIA_citizen.txt... (1 Reply)
Discussion started by: radius
1 Replies

4. Red Hat

Lftp issue

I installed KVM and configured two virtual machines in it server1.example.com(192.168.100.193) and tester1.example.com(192.168.100.230).I want to access server1.example.com from tester1.example.com over lftp.As far as networking is concerned between both I do have some doubts. I tried ping and... (5 Replies)
Discussion started by: shazgaurav
5 Replies

5. HP-UX

What is the difference between DRD and Root Mirror Disk using LVM mirror ?

what is the difference between DRD and Root Mirror Disk using LVM mirror ? (3 Replies)
Discussion started by: maxim42
3 Replies

6. UNIX for Advanced & Expert Users

lftp: Option to lftp a file, wait and download a file as soon as its created

Please let me know what is lftp options combination to wait and download a file from target as soon as its gets created. I tried with different options but not able to get it working as I need any help would be appreciated (4 Replies)
Discussion started by: bmkux
4 Replies

7. Solaris

What is mirror and sub mirror in RAID -1 SVM

Hi , I am new to SVM .when i try to learn RAID 1 , first they are creating two RAID 0 strips through metainit d51 1 1 c0t0d0s2 metainit d52 1 1 c1t0d0s2 In the next step metainit d50 -m d51 d50: Mirror is setup next step is metaattach d50 d52 d50 : submirror d52 is... (7 Replies)
Discussion started by: vr_mari
7 Replies

8. Solaris

ZFS Mirror versus Hardware Mirror

I've looked a little but haven't found a solid answer, assuming there is one. What's better, hardware mirroring or ZFS mirroring? Common practice for us was to use the raid controllers on the Sun x86 servers. Now we've been using ZFS mirroring since U6. Any performance difference? Any other... (3 Replies)
Discussion started by: Lespaul20
3 Replies

9. UNIX for Advanced & Expert Users

LFTP Mirroring

LFTP Mirroring We are planning to use lftp to mirror some of the files and directories on to the remote server. What we exactly want to do is mirror some of the directories and exclude some of the the directories from "/" i.e. main root. . What lftp is doing is... (0 Replies)
Discussion started by: sameerarora
0 Replies
Login or Register to Ask a Question