Script to move trace files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script to move trace files
# 1  
Old 11-21-2002
Script to move trace files

Please debug this shell script for me.. Basically the idea is to run the script, based on the command to move some trace files to a separate directory and I am getting the error. Only the COMMAND that has rm {} works and I basically want to use it for the fourth one. Please try for the 2nd, 3rd and 4th as well.
Thanks, ST2000

oracle@CG_JDA1:/home/oracle_> more delete_trc.ksh
#! /bin/ksh
#
# This script cleans up some trace files
#
#. path_env.ksh
#cg_batch=/home/odbms/prod/cg_batch
path=/home/oracle/admin/ODBMSPRD/udump

#COMMAND="-exec rm {} ;"
#COMMAND="-exec echo File is {} ;"
#COMMAND="-exec ls -ltr {} ;"
COMMAND="-exec cp {} /home/oracle/admin/ODBMSPRD/udump/trace;"

find $path -name "*trc" -mtime +2 $COMMAND
# 2  
Old 11-21-2002
They work for me. Could it be that after the "rm" test, the other commands are failing because there are no files left?
# 3  
Old 11-21-2002
Sorry: For me the first three works.. Only the last command does not work.. There are tonnes of files, otherwise 1st three wont work either.. Anyway this is the result of the run..

oracle@CG:/home/oracle_> delete_trc.ksh
find: 0652-018 An expression term lacks a required parameter.

I also checked the permissions on the directories and files at both ends..

Thanks, ST2000
# 4  
Old 11-21-2002
Re: Script to move trace files

Quote:
Originally posted by ST2000
Please debug this shell script for me.. Basically the idea is to run the script, based on the command to move some trace files to a separate directory and I am getting the error. Only the COMMAND that has rm {} works and I basically want to use it for the fourth one. Please try for the 2nd, 3rd and 4th as well.
Thanks, ST2000
Code:
oracle@CG_JDA1:/home/oracle_> more delete_trc.ksh
#! /bin/ksh
#
# This script cleans up some trace files
#
#. path_env.ksh
#cg_batch=/home/odbms/prod/cg_batch
path=/home/oracle/admin/ODBMSPRD/udump

#COMMAND="-exec rm {} ;"
#COMMAND="-exec echo File is {} ;"
#COMMAND="-exec ls -ltr {} ;"
COMMAND="-exec cp {} /home/oracle/admin/ODBMSPRD/udump/trace;"

find  $path -name "*trc" -mtime +2 $COMMAND

If you have done the cut and paste correctly, your fourth command needs a space before the semicolon, i.e., it should be
Code:
COMMAND="-exec cp {} /home/oracle/admin/ODBMSPRD/udump/trace ;"

This is one of the gotchas in find ...
# 5  
Old 11-21-2002
That's the culprit.. Thanks a lot criglerj... ST2000
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to move certain no. of files every second

Hi All, I am new to Linux/Scripting and need some assistance in coming up with a script that can move certain amount of files from one directory to other every seconds. Usercase: We have around 100k files in tmp directory on my server which needs to be moved to another folder to get... (3 Replies)
Discussion started by: Raj1184
3 Replies

2. Shell Programming and Scripting

Script move files by name

hi, I have a lot of files named xxxxx__AA.txt, xxxxx__BB.txt, xxxxx__CC.txt and I would like to move xxxxx__AA.txt in AA directory, xxxxx__BB.txt in BB etc. Could you help me do it in bash script? (5 Replies)
Discussion started by: corfuitl
5 Replies

3. Shell Programming and Scripting

help with a script to gzip/move files

Hi Please can you help me in writing a script to find files on a specific directory, and of extension "tap" but only of the month of september, gzip and move them to another directory. Your help will be appreciated. (4 Replies)
Discussion started by: fretagi
4 Replies

4. Shell Programming and Scripting

Need shell script to move files

Hi , I need a simple shell script to move the files from one directory to another directory after every 1 hour..!!! ?? (1 Reply)
Discussion started by: SARAL SAXENA
1 Replies

5. Shell Programming and Scripting

Need script to move files based on name

Hi folks, I'm new here and appreciate greatly any help. I have a bunch of files that need be moved and renamed. Fortunately, they are all in sequence... Present filename and path: /.catalog1/t76038_842-01 Move to: /.catalog1/76038-01 So, we need to drop the... (8 Replies)
Discussion started by: axslinger
8 Replies

6. Shell Programming and Scripting

Script to report on Oracle's trace files

Hi All, Does anyone have any shell script out there that looks into Oracle trace files generated in the bdump, cdump & udump directories & reports on the contents (errors) within these files. Your help is highly appreciated. Regards, - divroro12 - (5 Replies)
Discussion started by: divroro12
5 Replies

7. Shell Programming and Scripting

Perl script to move files not in use

I need to write a script to move files only when they are not in use. I have a rudementry bash script for Linux but i need a perl script so it will work on Linux and hpux. Oracle writes files to a directory called /data and the files there are moved every 5 minutes to a new home. But i need to... (1 Reply)
Discussion started by: insania
1 Replies
Login or Register to Ask a Question