Sponsored Content
Top Forums Shell Programming and Scripting How to delete directories and files with xargs? Post 302903222 by balajesuri on Monday 26th of May 2014 07:33:35 AM
Old 05-26-2014
At the top of my head:

1. Try just the find command and see if there's any output:
Code:
find /usr/IBM/HTTPServer/apache_cache/ -name '*' -mtime +1

2. Try without -print0 and xargs -0
Code:
find /usr/IBM/HTTPServer/apache_cache/ -name '*' -mtime +1 | xargs rm -r

3. If the interactive mode is aliased to rm, try rm -rf
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

delete pattern files in sub directories

Hello friends, I am compiling some set of SQL scripts in a set of sub directories demoed as below. After compiling log files are being created. Each and every time after compiling time I had to go subdir by subdir to delete the log files. I am sure there should be simple way to look for all log... (4 Replies)
Discussion started by: adurga
4 Replies

2. Shell Programming and Scripting

A Batch job to delete files from various directories

Hi, I have a shell script to find files older than 'X' days ($2) in directory path ($1) and delete them. Like this: my_file_remover.sh /usr/home/c 90 Now, I need to modify this script and add it in CRON, so that it checks other directories also. Like: my_file_remover.sh /usr/home/c... (3 Replies)
Discussion started by: guruparan18
3 Replies

3. Shell Programming and Scripting

Search directories for files with zero sizes to delete

Hi, I am trying to write a script that will use ls on a directory and list the files one at a time and their size. If the size is 0 i want it to ask me if I want to delete it (yes or no). If I say yes, I want it to delete but it won't know what the file name is just from running from the script.... (2 Replies)
Discussion started by: akeenabawa
2 Replies

4. Shell Programming and Scripting

Delete files from sub-directories over 7 days

Can any one please help me in deleting all the Files over 7 days from sub-directories A, B, C... Top-Directory Sub-Directory-A File-1 File-2 ..... File-n Sub-Directory-B File-1 File-2 ..... File-n Sub-Directory-C File-1 ... (1 Reply)
Discussion started by: sureshcisco
1 Replies

5. Red Hat

Find files older than 30 days in directories and delete them

Hi, I have dummies questions: My script here can find the files in any directories older than 30 days then it will delete the files but not the directories. I would like to also be able to delete the directories that hold old files more than 30 days not just the files itself. find . -type f... (2 Replies)
Discussion started by: lamoul
2 Replies

6. Homework & Coursework Questions

Find and delete empty files and directories

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Need to make a script, to remove all empty files and folders from current category. It also should show the name... (2 Replies)
Discussion started by: Itixop
2 Replies

7. Shell Programming and Scripting

Script to go Into Directories and Find/Delete files

I have a task, I usually do manually, but with growing responsibilities I tend to forget to do this weekly, I want to write a script that automates this, but I cant seem to work it out in my head, I have the shell of it out, but need help, and you guys have helped me with EVERY problem I have... (5 Replies)
Discussion started by: gkelly1117
5 Replies

8. Shell Programming and Scripting

Delete files in group of directories

OS: SUNOS 5.10 i386 Hello guys I wrote a shell script in bash shell to delete the files less than 30 days old. The following is the script. ======================================= #!/bin/bash for dirs in `/clu04/oracle/directory_list.lst` do find $dirs -type f -mtime -30 -exec rm {} \;... (3 Replies)
Discussion started by: zacsparrow
3 Replies

9. Shell Programming and Scripting

How to delete all the files and folders inside all the directories except some specific directory?

hi, i have a requirement to delete all the files from all the directories except some specific directories like archive and log. for example: there are following directories such as A B C D Archive E Log F which contains some sub directories and files. The requirement is to delete all the... (7 Replies)
Discussion started by: Little
7 Replies

10. UNIX for Beginners Questions & Answers

Delete Directories and its files that begin with the same character string

I wrote a shell script program that supposed to delete any directories and its files that begin with the same character string . The program is designed to delete directories and its files that are one day old or less and only the directories that begin with the same character string. The problem... (1 Reply)
Discussion started by: dellanicholson
1 Replies
Net::HTTPServer::Response(3pm)				User Contributed Perl Documentation			    Net::HTTPServer::Response(3pm)

NAME
Net::HTTPServer::Response - HTTP response SYNOPSIS
Net::HTTPServer::Response handles formatting the response to the client. DESCRIPTION
Net::HTTPServer::Response provides a nice OOP interface for easy control of headers, cookies, sessions, and/or the content that will be sent to the requesting client. EXAMPLES
my $response = new Net::HTTPServer::Response(); my $response = new Net::HTTPServer::Response(code=>200, headers=>{ ); my $response = $request->Response(); METHODS
new(%cfg) Given a config hash, return a server object that you can start, process, and stop. The config hash takes the options: body => string - The contents of the response. ( Default: "" ) code => int - The return code of this reponse. ( Default: 200 ) cookies => hashref - Hash reference to a set of cookies to send. Most people should just use the Cookie method to set these. ( Default: {} ) headers => hashref - Hash reference to the headers to send. Most people should just use the Header method. ( Default: {} ) Body([string]) Returns the current value of the response body. Sets the content of the response if a value is specified. Clear() Reset the body to "". Code(int) Returns the current value of the response code. Set the status code of the response if a value is specified. Cookie(name[,value[,%options]]) Returns the cookie value for the specified name, or undef if it is not set. If the value is also specified, then the cookie is set to the value. The optional hash options that you can provide to the cookie are: domain => string - If specified, the client will return the cookie for any hostname that is part of the domain. expires => string - When should the cookie expire. Must be formatted according to the rules: Wednesday, 30-June-2004 18:14:24 GMT Optionally you can specify "now" which will resolve to the current time. path => string - The path on the server that the client should return the cookie for. secure => 0|1 - The client will only return the cookie over an HTTPS connection. Header(name[,value]) Returns the header value for the specified name, or undef if it is not set. If the value is specified, then the header is set to the value. Print(arg1[,arg2,...,argN]) Appends the arguments to the end of the body. Redirect(url) Redirect the client to the specified URL. Session(object) Register the Net::HTTPServer::Session object with the response. When the server builds the actual reponse to the client it will set the appropriate cookie and save the session. If the response is created from the request object, and there was a session created from the request object then this, will be prepopulated with that session. CaptureSTDOUT() If you use the CGI perl module then it wants to print everything to STDOUT. CaptureSTDOUT() will put the Reponse object into a mode where it will capture all the output from the module. See ProcessSTDOUT() for more information. ProcessSTDOUT([%args]) This will harvest all of the data printed to STDOUT and put it into the Response object via a Print() call. This will also stop monitoring STDOUT and release it. You can specify some options: strip_header => 0|1 - If you use the CGI module and you print the headers then ProcessSTDOUT() can try to strip those out. The best plan is not to print them. See CaptureSTDOUT() for more information. AUTHOR
Ryan Eatmon COPYRIGHT
Copyright (c) 2003-2005 Ryan Eatmon <reatmon@mail.com>. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-03-03 Net::HTTPServer::Response(3pm)
All times are GMT -4. The time now is 06:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy