Sponsored Content
Full Discussion: Archive & move the file
Top Forums Shell Programming and Scripting Archive & move the file Post 302450416 by jagadeeshn04 on Thursday 2nd of September 2010 02:08:12 PM
Old 09-02-2010
Archive & move the file

I have a set of files in path /ifx01/etldata/lmt/
a.xml
b.xml
I have to archive & move these files to path /ifx01/etldata/archive ,so that not even the original files should exists.
After acrhiving there should be no files in path /ifx01/etldata/lmt/
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File Compare & Move between 2 servers

Greetings - I am a newbie in shell scripts. I have been thru the whole forum but there has been no similar query posed. The objective of my system is to have a unified filebase system. I am using RSync to synchronise files between the location & central server with both of them having the... (4 Replies)
Discussion started by: evolve
4 Replies

2. UNIX for Advanced & Expert Users

how to archive logs older than 5 days & then delete them?

My code is tar -cvf logs.tar `find /usr/openv/logs/512*.log -mtime +2` && find *.log* -mtime +2 -exec rm {} \; this gives me output as: tar: Missing filenames:confused: (1 Reply)
Discussion started by: timus1980
1 Replies

3. UNIX for Dummies Questions & Answers

sample script to archive & move previous day syslog files

hi all. Please help me with archiving previous day syslog files. the files have no extension and have the format YYYY-MM-DD. I want to archive the file then move it to some other machine. thanks. (2 Replies)
Discussion started by: coolatt
2 Replies

4. Shell Programming and Scripting

Move files & folder structure

Hey, this might be a really basic question, but I'm new to Unix scripting. I'm trying to find a command to replicate a file structure from one location to another & move the actual files contained in the base directories, i.e. I have this structure - home/temp/test/dir1/ ... (3 Replies)
Discussion started by: SOCLA_CELT
3 Replies

5. Shell Programming and Scripting

Awk & Move

How can I move all files from last year. I wrote the comamnd but not working. ls -ltr | awk '{if($8~/2009/)print "mv "$9 " remove"}' (7 Replies)
Discussion started by: moe458
7 Replies

6. Shell Programming and Scripting

Move all files from dir and subdir to Archive with File name as complete path_filename

HI, I need to move all files from a dir & its all subdir to Archive folder which is indise dir only. and moved filename should changed to complete path ( Like Dir_subdir_subdir2_.._filename ). also all files names shoud capture in a file in order to mail I written below code ... (11 Replies)
Discussion started by: minijain7
11 Replies

7. Shell Programming and Scripting

Find & move script

Hi all I wrote a little script that search for a file and moves it, its like this: #!/bin/ksh today=`date +"%d_%m_%y"` if ; then mkdir -p /tmp/bigfiles/$today mv $1 /tmp/bigfiles/$today/ echo "moving big file from /home/appcwec " | mailx -s "bigfile" ffff@yyy.com else ... (4 Replies)
Discussion started by: fretagi
4 Replies

8. UNIX for Dummies Questions & Answers

Archive won't move

I' writing a script trying to archive the oldest two directories from one place, tar them, and move them to another. #!/bin/bash cd (/dir/with/dirforarchiving) ARCHIVE=(/temp/dir/) FIND=$(find . -maxdepth 1 -type d) ARRAY=(`ls ${FIND} -ltd | tail -2`) names=(${ARRAY} ${ARRAY})... (4 Replies)
Discussion started by: jrymer
4 Replies

9. UNIX for Dummies Questions & Answers

Move Directory & Contents Between Two Machines

Hi All, I have a large amount of files that I need to copy from one server to another server using SFTP. Can comeone please help me with the command I would use here? Here is what I am thinking, but being new at this I know this is probably wrong: Login to the destination host using... (1 Reply)
Discussion started by: SalientAnimal
1 Replies

10. Shell Programming and Scripting

File Move & Sort by Name - Kick out Bad File Names & More

I have a dilemma, we have users who are copying files to "directory 1." These images have file names which include the year it was taken. I need to put together a script to do the following: Examine the file naming convention, ensuring it's the proper format (e.g. test-1983_filename-123.tif)... (8 Replies)
Discussion started by: Nvizn
8 Replies
Dist::Metadata::Archive(3pm)				User Contributed Perl Documentation			      Dist::Metadata::Archive(3pm)

NAME
Dist::Metadata::Archive - Base class for Dist::Metadata archive files VERSION
version 0.923 SYNOPSIS
my $dist = Dist::Metadata->new(file => $path_to_archive); DESCRIPTION
This is a subclass of Dist::Metadata::Dist to enable determining the metadata from an archive file. It is a base class for archive file formats: o Dist::Metadata::Tar o Dist::Metadata::Zip It's not useful on it's own and should be used from "new" in Dist::Metadata. METHODS
new $dist = Dist::Metadata::Archive->new(file => $path); Accepts a single "file" argument that should be a path to a file. If called from this base class "new()" will delegate to a subclass based on the filename and return a blessed instance of that subclass. archive Returns an object representing the archive file. default_file_spec Returns "Unix" since most archive files are be in unix format. determine_name_and_version Attempts to parse name and version from file name. file The "file" attribute passed to the constructor, used to load "archive". read_archive $dist->read_archive($file); Returns a format-specific object representing the specified file. This must be defined by subclasses. AUTHOR
Randy Stauner <rwstauner@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Randy Stauner. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-19 Dist::Metadata::Archive(3pm)
All times are GMT -4. The time now is 09:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy