Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to move gz files from one source directory to destination directory? Post 302970226 by venkat918 on Monday 4th of April 2016 06:19:07 AM
Old 04-04-2016
Thanks for your help.

On the basis of above command i have written the below shell script. Could you please verify whether it is correct or not.


Code:
#!/usr/bin/bash


echo "Wait until the script completes. This will take 1-2 minutes"
sleep 2
echo "Finding 90 days before files in the server. Output will be location of files:"

cd /opt/psoft/scripts

find /opt/psoft/projects -name "*.gz" -mtime +90 -exec mv {} /opt/psoft/projects/scripts/ \; > result_file.txt

if [ -s result_file.txt ]
then
        echo "Script completed successfully. Below files were found:"
        sleep 2
        cat result_file.txt
else
       
        echo "No files found " .
fi



exit 0

Moderator's Comments:
Mod Comment Please use code tags as required by forum rules!

Last edited by RudiC; 04-04-2016 at 07:20 AM.. Reason: Added code tags.
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

rsync: taking advantage of files in different directory other than destination

Dear Folks, I have to backup pgsql database dump everynight on a routine. The database dump actually contains sql(text) statements. The actual size of the database dump is aroung 800 MB. Between two days backup, only few lines of statements are modified/added/deleted. I dont want to do... (1 Reply)
Discussion started by: rssrik
1 Replies

2. UNIX for Dummies Questions & Answers

Move all files in a directory tree to a signal directory?

Is this possible? Let me know If I need specify further on what I am trying to do- I just want to spare you the boring details of my personal file management. Thanks in advance- Brian- (2 Replies)
Discussion started by: briandanielz
2 Replies

3. UNIX for Dummies Questions & Answers

move all 2008 year's file to destination directory

I am trying to move file created/modified in 2008 year to <new directory>. But trapped badly in Xargs {}. Looks like mv is not getting destination file properly. It assumes source file s to be destination directory n gives me erroir. "Target must be a directory" Run- #/home/mktrisk: find... (4 Replies)
Discussion started by: kedar.mehta
4 Replies

4. Shell Programming and Scripting

Move all files from source to destination directory based on the filename

Move all files starting with a specific name to different directory. This shell script program should have three parameters File Name Source Directory Destination Directory User should be able to enter ‘AB_CD*' in file name parameter. In this case all the files starting with AB_CD will... (1 Reply)
Discussion started by: chetancrsp18
1 Replies

5. UNIX for Dummies Questions & Answers

Zip all files in a directory and move to another directory

Hi, need to zip all files in a directory and move to another directory after the zip.. i am using this one but didnt help me... zip -r my_proj_`date +%Y%m%d%H%MS`.zip /path/my_proj mv in_proj_`date +%Y%m%d%H%M%S`.zip /path/source/ i am trying to zip all the files in my_proj... (0 Replies)
Discussion started by: dssyadav
0 Replies

6. Shell Programming and Scripting

List files with date, create directory, move to the created directory

Hi all, i have a folder, with tons of files containing as following, on /my/folder/jobs/ some_name_2016-01-17-22-38-58_some name_0_0.zip.done some_name_2016-01-17-22-40-30_some name_0_0.zip.done some_name_2016-01-17-22-48-50_some name_0_0.zip.done and these can be lots of similar files,... (6 Replies)
Discussion started by: charli1
6 Replies

7. Shell Programming and Scripting

How Create new directory and move files to that directory.?

Hi All, We have main directory called "head" under this we have several sub directories and under these directories we have sub directories. My requirement is I have to find the SQL files which are having the string "procedure" under "head" directory and sub directories as well. And create... (14 Replies)
Discussion started by: ROCK_PLSQL
14 Replies

8. UNIX for Beginners Questions & Answers

Move directory with rsync and delete from source

I need a rsync command which will exclude certain files and directories from source and copy the rest. I got this command working, sudo rsync -avzh --exclude 'bin' --exclude 'braintree' --exclude 'colinmollenhour' --exclude 'composer' --exclude 'doctrine' --exclude 'fabpot' --exclude... (2 Replies)
Discussion started by: Siddheshk
2 Replies

9. Shell Programming and Scripting

Move directory recursive and leave symlinks at source

Looking for a script or command to - Move a very large directory with tens of thousands of files and sub-directories recursively (filenames can include spaces) and replace with symlinks pointing to the new location at the same time so there is no downtime Looking for speed + safety :o (5 Replies)
Discussion started by: carnagel
5 Replies
OCAMLDSORT(1)						      General Commands Manual						     OCAMLDSORT(1)

NAME
ocamldsort - Dependency sorter for OCaml source files SYNOPSIS
ocamldsort [ -pp pre-command ] [ -d dep-command ] [ -mli ] [ -nox ] [ -obj | -byte | -opt ] [ filename ] ... DESCRIPTION
The ocamldsort(1) command scans a set of Objective Caml source files (.ml and .mli files), sorts them according to their dependencies and prints the sorted files in order to link their corresponding .cmo files. For ocamldsort(1) to work it must get a list of dependencies generated by ocamldep(1), if the standard input to ocamldsort(1) has been redirected then ocamldsort assumes that this is a dependency file generated by ocamldep(1). Otherwise ocamldsort calls ocamldep(1) to gen- erate the dependency list itself. In either case the source files to be sorted should be given as arguments to the ocamldsort(1) command. ocamldsort(1) can be used to compile and link simple projects with one command, such as: ocamlc $(ocamldsort *.ml) if your project doesn't contain .mli files or: ocamlc -c $(ocamldsort -mli *.ml *.mli) && ocamlc $(ocamldsort -byte *.ml) if it contains .mli files. However for larger projects where separate compilation is desirable, ocamldsort(1) can also be used from within a makefile. Here is a typi- cal makefile example: TARGET=my_program OCAMLC=ocamlc OCAMLOPT=ocamlopt OCAMLDEP=ocamldep OCAMLDSORT=ocamldsort PPFLAGS=-pp camlp4o MLY=$(shell echo *.mly) MLL=$(shell echo *.mll) GENERATED_ML=$(MLY:.mly=.ml) $(MLL:.mll=.ml) include .generated .depend .ocamldsort $(TARGET): $(CMO_FILES) $(OCAMLC) $(COMPFLAGS) $(LIBS) $^ -o $@ $(TARGET).opt: $(CMX_FILES) $(OCAMLOPT) $(COMPFLAGS) $(LIBS_OPT) $^ -o $@ .generated: $(GENERATED_ML) @touch .generated .depend: .generated $(OCAMLDEP) *.ml *.mli > $@ .ocamldsort: .depend echo CMO_FILES=`< .depend $(OCAMLDSORT) -byte *.ml` > .ocamldsort echo CMX_FILES=`< .depend $(OCAMLDSORT) -opt *.ml` >> .ocamldsort distclean: clean rm -f .generated .depend .ocamldsort rm -f $(GENERATED_ML) rm -f *~ rm -f $(TARGET) clean: rm -f *.cmo *.cmi *.cmx *.o .SUFFIXES: .mli .ml .cmi .cmo .cmx .mll .mly %.cmi:%.mli $(OCAMLC) $(PPFLAGS) $(COMPFLAGS) -c $< %.cmo:%.ml $(OCAMLC) $(PPFLAGS) $(COMPFLAGS) -c $< %.cmi %.cmo:%.ml $(OCAMLC) $(PPFLAGS) $(COMPFLAGS) -c $< %.cmx %.o:%.ml $(OCAMLOPT) $(PPFLAGS) $(COMPFLAGS) -c $< %.ml:%.mll $(OCAMLLEX) $< %.mli %.ml:%.mly $(OCAMLYACC) -v $< OPTIONS
The following command-line options are recognized by ocamlsort(1): -I directory Add the given directory to the list of directories searched for source files. -pp pre-command Command to preprocess file. -d dep-command Command to compute dependencies. ocamldep(1) by default. -mli Sort files using mli dependencies. -nox Ignore filenames containg `*' so that unexpanded wildcards are ignored. -obj Print bytecode filenames (.cmo and .cmi) (deprecated: use -byte). -byte Print bytecode filenames (.cmo and .cmi). -opt Print opt filenames (.cmx and .cmi). -v Output version information and exit. -help, --help Output help and exit. SEE ALSO
ocamldep(1). OCAMLDSORT(1)
All times are GMT -4. The time now is 08:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy