Sponsored Content
Top Forums UNIX for Advanced & Expert Users Deleting older files of a particular type Post 302357364 by thegeek on Tuesday 29th of September 2009 12:58:18 PM
Old 09-29-2009
1. Without the rm command, does it displays both the files as you expect. ?
$ find-command output without rm

2. If it displays, does the rm used is the correct one ?! or you need to give absolute path of rm as /bin/rm ?
$ which rm

Let us know the above clarifications.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Deleting files older than a given date

Hi all, I want to delete all files in a directory which are older than a given date. I thought of doing it by creating a file by the required date by using touch command. And then i would use find command on that file and try to find files older than that. I searched the man and found a... (3 Replies)
Discussion started by: rajugp1
3 Replies

2. Solaris

Deleting Files Older than 24 hours

Hi, I am using Solaris Box, I need to delete file(cookies.html) from the path(/usr/temp) which are older than 24 hours(I want in hours, not in days) Can u provide the command for the above query (7 Replies)
Discussion started by: mazhar803
7 Replies

3. Shell Programming and Scripting

Deleting files older than 7 days

Hi Guys, I want to delete folder/files older than 7 days. Im using the command below. find /test/test1 -mtime +7 -print0 | xargs -0 rm -Rf /test/test1/* which works ok, but it deletes the test1 folder as well which i dont want. The test1 folder will have a list of sub-folders which in... (4 Replies)
Discussion started by: shezam
4 Replies

4. UNIX for Dummies Questions & Answers

Deleting specfic files older than N days

Hello, I am trying to delete specific files older than 7 days that start with FSTRnnnn (nnnn=sequnce number) from /home/users/userdir I.E cd home/users/userdir ll FSTR0001 Jul 8 14:20 FSTR0002 Jul 6 12:01 FSTR0003 May 25 09:45 FSTR0004 April 2 17:20 MSTR0034 Jul 6 12:45... (3 Replies)
Discussion started by: eurouno
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. Shell Programming and Scripting

Deleting files older than 6 hours

Hi All, I am using the below script to find all the files in a folder which are older than 6 hours and delete all those files, but some how I am not getting the required output. find $HOME/Log -type f -name "*.log" -amin +360 -exec rm *.* {} \ can any one please check and let me know... (13 Replies)
Discussion started by: subhasri_2020
13 Replies

7. AIX

Deleting files older than 14 days automatically

Hi In my aix server under the location "/usr/sap/SAPXI/extract", I have a lot of log files. I need a script which is to be added in crontab so that the files and directories older than 14 days should get deleted automatically from the location "/usr/sap/SAPXI/extract". Please advise me.... (3 Replies)
Discussion started by: samsungsamsung
3 Replies

8. Shell Programming and Scripting

find command to filter specific type of files older than certain date.

Hi I need to find the list of files in a directory and to do some specific operations based on the type of files. suppose in a directory am having .dat , .log, .err, .rej file types. i need to filter out .dat and .log only which are older than six months. i used the below query but the... (2 Replies)
Discussion started by: msathees
2 Replies

9. Shell Programming and Scripting

Deleting Files Older than 1 hours.

How to Deleting Files Older than 1 hours. Base on SunOS. this file gen every 1 min. -rw-r--r-- 1 nobody nobody 4960 Jan 27 02:02 23_201301270201.log -rw-r--r-- 1 nobody amudu 2325 Jan 27 02:03 33_201301270202.log -rw-r--r-- 1 nobody amudu 3255 Jan 27 02:03... (2 Replies)
Discussion started by: ooilinlove
2 Replies

10. Shell Programming and Scripting

Need help deleting files one week older

Hi, I need to delete *.bad files which are 1 week old. How can I achieve that. I tried doing through below script but it deletes all the files. find ./ -mtime +7 -exec rm *.bad {} \; The below one works but i want to delete only files with .bad extension find . -mtime +7 | xargs rm (2 Replies)
Discussion started by: Gangadhar Reddy
2 Replies
gdmdynamic(1)							   User Commands						     gdmdynamic(1)

NAME
gdmdynamic - GDM GDM Dynamic Server Management SYNOPSIS
gdmdynamic [-a display | -b display | -d display | -l pattern] [-r display] [-s int] [-t int] [-v int] DESCRIPTION
gdmdynamic allows the management of displays in a dynamic fashion. It is typically used in environments where it is not possible to list the possible displays in the GDM configuration files. The gdmdynamic command can be used to create a new display on a particular display number, run all newly created displays, or remove a display. The gdmdynamic can also be used to list all attached displays, or only attached displays that match a pattern. This program is designed to manage multiple simultaneous requests and works to avoid flooding the daemon with requests. If the socket con- nection is busy, it will sleep and retry a certain number of times that can be tuned with the -s and -t options. OPTIONS
The following options are supported: -a display Add a new display configuration, leaving it in the DISPLAY_CONFIG state. The display will not actually be started until the display is released by calling gdmdynamic again with the -r option. -b Background mode. Fork child to do the work and return immediately. -d display Delete a display, killing the X server and purging the display configuration. -l pattern List displays via the ATTACHED_SERVERS gdmflexiserver(1), command. Without a pattern, all attached displays are lsited. With a pattern, all attached displays match using glob characters '*', '?' and '[]'. -r display Release (run) the specified display waiting in the DISPLAY_CONFIG state. -s int If the daemon socket is busy, gdmdynamic will sleep an amount of time between retries. A random number of seconds 0-5 is added to the int value to help ensure that multiple calls to gdmdynamic do not all try to restart at the same time. A value of zero causes the sleep time to be 1 second. Default value is 8 seconds. -t int If the daemon socket is busy, gdmdynamic will retry to open the connection the specified number of times. Default value is 15. -v Verbose mode. Print diagnostic messages about each message sent to GDM. EXAMPLES
Example 1: Adding display 2 using the [server-Standard] display configuration defined in the GDM configuration file. example% gdmdynamic -a "2=Standard" Example 2: Adding display 3 providing the command to use. example% gdmdynamic -a "3=/usr/X11R6/bin/X -dev /dev/fb2" Example 3: Release display 3. example% gdmdynamic -r 3 Example 4: Deleting display 3. example% gdmdynamic -d 3 Example 5: List all displays via the ATTACHED_SERVERS command example% gdmdynamic -l Example 6: List all displays via the ATTACHED_SERVERS command using a pattern to match example% gdmdynamic -l "Xorg*" FILES
The following files are used by this application: /usr/bin/gdmdynamic Executable for GDM Dynamic Server Management ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgnome-display-mgr | +-----------------------------+-----------------------------+ |Interface stability |Volatile | +-----------------------------+-----------------------------+ SEE ALSO
Latest version of the GNOME Desktop User Guide for your platform. gdmXnestchooser(1), gdmflexiserver(1), gdmphotosetup(1), gdmthemetester(1), gdm(1m), gdm-restart(1m), gdmsetup(1m), attributes(5), gnome- std-options(5) NOTES
Written by Brian Cameron, Sun Microsystems Inc., 2006. SunOS 5.11 1 Sep 2004 gdmdynamic(1)
All times are GMT -4. The time now is 02:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy