Sponsored Content
Full Discussion: Files older than 50 days
Top Forums UNIX for Dummies Questions & Answers Files older than 50 days Post 302541743 by alok.behria on Monday 25th of July 2011 02:14:56 PM
Old 07-25-2011
even than.

Code:
wmqa1> find . +ctime -50 | ls -ltr
find: bad option -50
total 153667144
drwxr-xr-x   2 orawmq1    dba             96 Jun 15  2006 lost+found
-rw-r--r--   1 orawmq1    dba        1684817920 May 22  2009 exp_icc_schema.dat
-rw-r--r--   1 orawmq1    dba           3439 Dec 20  2010 webmdata_wmqa1_exp.log
-rw-r--r--   1 orawmq1    dba         249856 Dec 20  2010 webmdata_wmqa1_exp.bck
-rw-r--r--   1 orawmq1    dba          86325 Jul 25 03:53 full_wmqa1_exp.log
-rw-r--r--   1 orawmq1    dba        76992369664 Jul 25 03:53 full_wmqa1_exp.bck

hare krishna
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

delete files older than 7 days

can anyone tell me how I would write a script in ksh on AIX that will delete files in a directory older than 7 days? (1 Reply)
Discussion started by: lesstjm
1 Replies

2. UNIX for Dummies Questions & Answers

How can I delete files older than 7 days?

I will like to write a script that delete all files that are older than 7 days in a directory and it's subdirectories. Can any one help me out witht the magic command or script? Thanks in advance, Odogboly98:confused: (3 Replies)
Discussion started by: odogbolu98
3 Replies

3. UNIX for Dummies Questions & Answers

Removing files older than 7 days

Script help, I need to delete files that are older than 7 days. I do that automatically but I know that a cron job can do the job for me. Any help is greatly appreciated, as you can see, I am a DOS or WINDOWS guy. Little on UNIX. Thanks (3 Replies)
Discussion started by: texasoeb
3 Replies

4. Shell Programming and Scripting

delete files more than 15 days older

i have to delete files which are older than 15 days or more except the ones in the directory Current and also *.sh files i have found the command for files 15 days or more older find . -type f -mtime +15 -exec ls -ltr {} \; but how to implement the logic to avoid directory Current and also... (3 Replies)
Discussion started by: ali560045
3 Replies

5. Shell Programming and Scripting

deleting files older than 7 days

Hi Guys, I am new to unix I am looking for a script to delete files older than 7 days but i also want to exclude certain directories (like arch,log .....) and also some files with extensions ( like .ksh, .ch, ..............) Thanks (1 Reply)
Discussion started by: MAYAMAYA0451
1 Replies

6. UNIX for Advanced & Expert Users

find files older than 30 days old

Hello, I have a script which finds files in a directory that are older than 30 days and remove them. The problem is that these files are too many and when i run this command: find * -mtime +30 | xargs rm I run this command inside the directory and it returns the error: /usr/bin/find:... (8 Replies)
Discussion started by: omonoiatis9
8 Replies

7. Shell Programming and Scripting

Delete files older than X days.

Hi All, I am using below code to delete files older than 2 days. In case if there are no files, I should log an error saying no files to delete. Please let me know, How I can achive this. find /path/*.xml -mtime +2 Thanks and Regards Nagaraja. (3 Replies)
Discussion started by: Nagaraja Akkiva
3 Replies

8. Shell Programming and Scripting

Remove files older than 2 days.

Hi All, I am new to the scripting and using solaris 10 OS. Please suggest me from the below script which modifications need to be done to delete the files more that 2days older. Current script is deleting existing file. # Remove old explorer runs if needed DIR=`dirname ${EXP_TARGET}` if ... (2 Replies)
Discussion started by: Navkreddy
2 Replies

9. Shell Programming and Scripting

List files older than 10 days.

Hello all, I want to list the files older than 10 days. Currently am using find ./ -mtime +10 -exec ls -ltr {} \; command. But I want to execute the same command in 16 directories at a time and want an output asking to remove those file? Please help me to design the script. regards, Ajay (3 Replies)
Discussion started by: 02Ajay
3 Replies
CUBRID_CURRENT_OID(3)							 1						     CUBRID_CURRENT_OID(3)

cubrid_current_oid - Get OID of the current cursor location

SYNOPSIS
string cubrid_current_oid (resource $req_identifier) DESCRIPTION
The cubrid_current_oid(3) function is used to get the oid of the current cursor location from the query result. To use cubrid_cur- rent_oid(3), the query executed must be a updatable query, and the CUBRID_INCLUDE_OID option must be included during the query execution. PARAMETERS
o $req_identifier -Request identifier. RETURN VALUES
Oid of current cursor location, when process is successful FALSE, when process is unsuccessful. EXAMPLES
Example #1 cubrid_current_oid(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb", "dba"); $req = cubrid_execute($conn, "SELECT * FROM code", CUBRID_INCLUDE_OID); $oid = cubrid_current_oid($req); $res = cubrid_get($conn, $oid); print_r($res); cubrid_disconnect($conn); ?> The above example will output: Array ( [s_name] => X [f_name] => Mixed ) SEE ALSO
cubrid_execute(3). PHP Documentation Group CUBRID_CURRENT_OID(3)
All times are GMT -4. The time now is 09:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy