Sponsored Content
Operating Systems AIX AIX : Find files ignoring certain file extensions Post 302947827 by kavinmjr on Monday 22nd of June 2015 09:32:15 PM
Old 06-22-2015
Code AIX : Find files ignoring certain file extensions

Hi All,

I am scripting a program to find and archive files. There are certain file types that I do not want to archive. Below is the scenario.

I have created a lookup file which has details on folders days and file extensions that needs to be ignored
Quote:
/Folder1,30,.txt;.csv
/Folder2,60,.sh,.ksh,.txt
/folder3,90,.param
I have separated the individual into fields and I am having trouble while excluding the file extensions in the find command. I tried to methods to ignore files.

Method 1: This method there are no errors, but the file extensions are still appearing.
Code:
IGNOREFILES="-o name *.txt* -o name *.csv*"
find $DIRNAME/* -prune -type f ! \( -name $IGNOREFILES \) -mtime +$TIME -exec ls -ltr {} \;

Method 2: This method I am using "grep -v" to ignore. It works when executed manually. But in the script is it throwing the following error.

Code:
IGNOREFILES="grep -v .txt | grep -v .csv"
find $DIRNAME/* -prune -type f ! \( -name $IGNOREFILES \) -mtime +$TIME -exec ls -ltr {} \;

Quote:
# echo $IGNORELIST
grep -v .xml | grep -v .sql | grep -v .dat | grep -v .csv
# find $SDIRNAME/* -prune -type f -mtime +$MTIME -exec ls -ltr {} \; | $IGNORELIST
grep: 0652-033 Cannot open |.
grep: 0652-033 Cannot open grep.
grep: 0652-033 Cannot open -v.
grep: 0652-033 Cannot open .sql.
grep: 0652-033 Cannot open |.
grep: 0652-033 Cannot open grep.
grep: 0652-033 Cannot open -v.
grep: 0652-033 Cannot open .dat.
grep: 0652-033 Cannot open |.
grep: 0652-033 Cannot open grep.
grep: 0652-033 Cannot open -v.
grep: 0652-033 Cannot open .csv.
Thanks,
Kev
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find files with 3 different extensions

Hi all, From one directory I need to fetch only files of type *.xls,*.csv,*.txt. I tried the find . -name '*.txt,*.csv,*.xls' -print. But it throws me error. Please do help me on this. Thanks Mahalakshmi.A (11 Replies)
Discussion started by: mahalakshmi
11 Replies

2. Shell Programming and Scripting

Find files ignoring subdirectories

Hi guys, I am searching some files not equal to the pattern with this command find ! -name "PATTERN" -type f but my problem is the find command because he also search inside subdirectories and that's the thing i don't want that. Is there any comand to ignore the directories... (4 Replies)
Discussion started by: osramos
4 Replies

3. UNIX for Dummies Questions & Answers

Find all the unique file extensions

Hi How can i find the unique list of file extensions in a folder/subfolders e.g. MAIN/ a.txt b.txt a.clas a.java b.class a.txt.112 c.12.ram.jar i just need to get the below out irrespective of file being present in folder or subfolders txt clas java (5 Replies)
Discussion started by: reldb
5 Replies

4. Shell Programming and Scripting

Ignoring certain extensions

Dear Friends, I want to move all the files to temp folder except files having following extensions which are case sensitive. .ttM .Hmt .dMt Request you to guide me to do the same Thank you in advance Anushree (3 Replies)
Discussion started by: anushree.a
3 Replies

5. Shell Programming and Scripting

Deleting all files recursively from directories while ignoring one file type

Hi, Seems like I need help again with a problem: I want to delete all files from my lets say "Music" Directory inkluding all of the subfolders except for .mp3 and .MP3 files. I tried it with globalignoring mp3 files, finding and deleting all other files, which resulted in all files... (3 Replies)
Discussion started by: pasc
3 Replies

6. Shell Programming and Scripting

adding file extensions to split output files

Hello, I've searched this forum and others for a solution to my problem but nothing seems just right, I'm hoping I can get some help (seems like this should be easy, and I apologize if I've missed something on the forum): I have several large .fastq DNA sequence files (~20million reads,... (2 Replies)
Discussion started by: ljk
2 Replies

7. Shell Programming and Scripting

Find duplicate files but with different extensions

Hi ! I wonder if anyone can help on this : I have a directory: /xyz that has the following files: chsLog.107.20130603.gz chsLog.115.20130603 chsLog.111.20130603.gz chsLog.107.20130603 chsLog.115.20130603.gz As you ca see there are two files that are the same but only with a minor... (10 Replies)
Discussion started by: fretagi
10 Replies

8. AIX

Loading AIX kernel extensions on reboot

Greetings, Does anyone know how to load AIX kernel extensions on reboot? I know that Oracle loads it's postwait kernel extension via a executable in /etc/inittab. I'm assuming this executable calls the "sysconfig" system call and loads it. What if I wrote my own? What is the proper way in AIX to... (3 Replies)
Discussion started by: jbleistein
3 Replies

9. Shell Programming and Scripting

Add file extensions to files EXCEPT the script that is issuing

Greetings all, On a RedHat System - I am issuing a command from script.sh that will add a file extension to a listing of files in a directory. It works, but I need to script from having an extension added as well. Here is what I have tried to no luck: for file in `ls * | awk ' /\./{print... (6 Replies)
Discussion started by: jeffs42885
6 Replies

10. UNIX for Advanced & Expert Users

Find wild card directory and its files of some extensions

I want to use Find command to find directories that have certain name and them find files in that directory having only some extensions. So far, I have come up with this command to list directories with wild card name and list ALL the files in that directory. find . -type d -name prog\* -print... (11 Replies)
Discussion started by: sssccc
11 Replies
SHAR(1) 						    BSD General Commands Manual 						   SHAR(1)

NAME
shar -- create a shell archive of files SYNOPSIS
shar file ... DESCRIPTION
shar writes an sh(1) shell script to the standard output which will recreate the file hierarchy specified by the command line operands. Directories will be recreated and must be specified before the files they contain (the find(1) utility does this correctly). shar is normally used for distributing files by ftp(1) or mail(1). SEE ALSO
compress(1), mail(1), uuencode(1), tar(1) BUGS
shar makes no provisions for special types of files or files containing magic characters. EXAMPLES
To create a shell archive of the program ls(1) and mail it to Rick: cd ls shar `find . -print` | mail -s "ls source" rick To recreate the program directory: mkdir ls cd ls ... <delete header lines and examine mailed archive> ... sh archive HISTORY
The shar command appears in 4.4BSD. SECURITY CONSIDERATIONS
It is easy to insert trojan horses into shar files. It is strongly recommended that all shell archive files be examined before running them through sh(1). Archives produced using this implementation of shar may be easily examined with the command: egrep -v '^[X#]' shar.file 4.4BSD June 6, 1993 4.4BSD
All times are GMT -4. The time now is 04:21 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy