Sponsored Content
Full Discussion: Deleting files
Top Forums Shell Programming and Scripting Deleting files Post 302963781 by newtoaixos on Wednesday 6th of January 2016 03:35:47 AM
Old 01-06-2016
Deleting files

Hi

I have an AIX server. I'm planning to use the below script to remove 60 days older files.

Code:
find /path/ -mtime +60 -exec rm -f {} \;

I just want to make sure it will only remove the files. I don't want the directories to be removed.

If in case it will delete the directories too, then what changes should be done so that it will ignore the directories.

Please advise.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Deleting the files

Hi, I've to delete certain files older than X days from a Maintenance server. I'm doing this using find . -name lds\* -mtime $X \ -exec ls -l {} \; find . -name lds\* -mtime $X \ -exec rm -fR {} \; As well as I've to delete the files from another FTP server which are again older than X... (0 Replies)
Discussion started by: livetaurean19
0 Replies

2. Shell Programming and Scripting

Deleting old files

Hi, I have a directory which contains files.This Directory keeps getting in new files from time to time.I want to maintain only 15 files in that directory at any time and the old files should be deleted. Eg: Directory 'c' @'a/b/c contains: 1_a 2_a 3_a... I want to delete all the old... (2 Replies)
Discussion started by: shiroh_1982
2 Replies

3. Solaris

Deleting files

OK, Easy question probably, I have a directory that is full of like 1000 files. I want to get rid of files more than 5 days old. Is there an easy way to do this? there are like 800 files that fit into this category so doing it manually would be a pain. Any help is appreciated! (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

4. UNIX for Dummies Questions & Answers

Deleting Files

Hi, I have been working with files in emacs and a file showed up in my directories called #main.c# (the original file being main.c). However I cannot delete this #main.c# file. Any suggestions? (1 Reply)
Discussion started by: bc4
1 Replies

5. UNIX for Dummies Questions & Answers

df -k and deleting files

hi everybody, urgently need solutioin aftet i execute the command df -k, i get to see al the memory status blah blah if some file system has 95% full then what should i do and any help on how and what to do ? help really appriciated. cheers (4 Replies)
Discussion started by: ajayr111
4 Replies

6. Shell Programming and Scripting

Deleting files

hellooo..... script is: To remove a file from a directory if a starting letter and a file size is given by the user. My code is: echo "Enter a letter" read l echo "Enter Size" read size for i in `ls $l*` do s=`stat -c %s $i` if then rm $i ... (1 Reply)
Discussion started by: Priyanka Bhati
1 Replies

7. Shell Programming and Scripting

Need help comparing two files and deleting some things in those files!

So I have two files: File1 pictures.txt 1.1 1.3 dance.txt 1.2 1.4 treehouse.txt 1.3 1.5 File2 pictures.txt 1.5 ref2313 1.4 ref2345 1.3 ref5432 1.2 ref4244 dance.txt 1.6 ref2342 1.5 ref2352 1.4 ref0695 1.3 ref5738 1.2 ref4948 1.1 treehouse.txt 1.6 ref8573 1.5 ref3284 1.4 ref5838... (24 Replies)
Discussion started by: linuxkid
24 Replies

8. Shell Programming and Scripting

AIX system.... deleting files in remote directory after retrieving files

Hi Friends, I am new to this , I am working on AIX system and my scenario is to retrive the files from remote system and remove the files from the remote system after retreving files. I can able to retrieve the files but Can't remove files in remote system. Please check my code and help me out... (3 Replies)
Discussion started by: vinayparakala
3 Replies

9. Shell Programming and Scripting

Deleting files

Hi all, I have developed a shell script to copy the files from source to destination and simultaneously to delete the copied files in source. I can copy the files but the files cannot be deleted in source side. (3 Replies)
Discussion started by: Venkatesan
3 Replies

10. Shell Programming and Scripting

Bash script deleting my files, and editing files in subdirectories question

#!/bin/bash # name=$1 type=$2 number=1 for file in ./** do if then filenumber=00$number elif then filenumber=0$number fi tempname="$name""$filenumber"."$type" if (4 Replies)
Discussion started by: TheGreatGizmo
4 Replies
GIT-CLEAN(1)							    Git Manual							      GIT-CLEAN(1)

NAME
       git-clean - Remove untracked files from the working tree

SYNOPSIS
       git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <path>...

DESCRIPTION
       Cleans the working tree by recursively removing files that are not under version control, starting from the current directory.

       Normally, only files unknown to Git are removed, but if the -x option is specified, ignored files are also removed. This can, for example,
       be useful to remove all build products.

       If any optional <path>... arguments are given, only those paths are affected.

OPTIONS
       -d
	   Remove untracked directories in addition to untracked files. If an untracked directory is managed by a different Git repository, it is
	   not removed by default. Use -f option twice if you really want to remove such a directory.

       -f, --force
	   If the Git configuration variable clean.requireForce is not set to false, git clean will refuse to delete files or directories unless
	   given -f, -n or -i. Git will refuse to delete directories with .git sub directory or file unless a second -f is given.

       -i, --interactive
	   Show what would be done and clean files interactively. See "Interactive mode" for details.

       -n, --dry-run
	   Don't actually remove anything, just show what would be done.

       -q, --quiet
	   Be quiet, only report errors, but not the files that are successfully removed.

       -e <pattern>, --exclude=<pattern>
	   In addition to those found in .gitignore (per directory) and $GIT_DIR/info/exclude, also consider these patterns to be in the set of
	   the ignore rules in effect.

       -x
	   Don't use the standard ignore rules read from .gitignore (per directory) and $GIT_DIR/info/exclude, but do still use the ignore rules
	   given with -e options. This allows removing all untracked files, including build products. This can be used (possibly in conjunction
	   with git reset) to create a pristine working directory to test a clean build.

       -X
	   Remove only files ignored by Git. This may be useful to rebuild everything from scratch, but keep manually created files.

INTERACTIVE MODE
       When the command enters the interactive mode, it shows the files and directories to be cleaned, and goes into its interactive command loop.

       The command loop shows the list of subcommands available, and gives a prompt "What now> ". In general, when the prompt ends with a single
       >, you can pick only one of the choices given and type return, like this:

	       *** Commands ***
		   1: clean		   2: filter by pattern    3: select by numbers
		   4: ask each		   5: quit		   6: help
	       What now> 1

       You also could say c or clean above as long as the choice is unique.

       The main command loop has 6 subcommands.

       clean
	   Start cleaning files and directories, and then quit.

       filter by pattern
	   This shows the files and directories to be deleted and issues an "Input ignore patterns>>" prompt. You can input space-separated
	   patterns to exclude files and directories from deletion. E.g. "*.c *.h" will excludes files end with ".c" and ".h" from deletion. When
	   you are satisfied with the filtered result, press ENTER (empty) back to the main menu.

       select by numbers
	   This shows the files and directories to be deleted and issues an "Select items to delete>>" prompt. When the prompt ends with double >>
	   like this, you can make more than one selection, concatenated with whitespace or comma. Also you can say ranges. E.g. "2-5 7,9" to
	   choose 2,3,4,5,7,9 from the list. If the second number in a range is omitted, all remaining items are selected. E.g. "7-" to choose
	   7,8,9 from the list. You can say * to choose everything. Also when you are satisfied with the filtered result, press ENTER (empty) back
	   to the main menu.

       ask each
	   This will start to clean, and you must confirm one by one in order to delete items. Please note that this action is not as efficient as
	   the above two actions.

       quit
	   This lets you quit without do cleaning.

       help
	   Show brief usage of interactive git-clean.

SEE ALSO
       gitignore(5)

GIT
       Part of the git(1) suite

Git 2.17.1							    10/05/2018							      GIT-CLEAN(1)
All times are GMT -4. The time now is 12:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy