Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Some advice please on non-recursive find Post 302615931 by methyl on Friday 30th of March 2012 09:18:49 AM
Old 03-30-2012
Or (avoiding the usual Solaris issues with the default awk and sed).

Code:
DIR="/u01/tmp"
find . \( ! -name . -prune \) \( -type f -name "*.tmp" -mtime +10 \) |\
     while read filename1
     do
          filename2=$(echo "${filename1}"|cut -c3-)
          echo "${DIR}/${filename2}"
     done


Last edited by methyl; 03-30-2012 at 10:21 AM.. Reason: correct start directory
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Performing a non-recursive find in Unix

I need to perform a non-recursive find in Unix. Sounds simple, but it doesn't actually work. The command ALWAYS searches through the subdirectories. Any ideas? I am on DEC Unix :-( (3 Replies)
Discussion started by: christallott
3 Replies

2. UNIX for Dummies Questions & Answers

Question: non-recursive find syntax

Hello, I am trying to search a directory for all files matching "G*" without looking in sub-directories "success" and "error". I've searched this forum and found the following syntax, but can't make it work: find . \( ! -name success -prune -name error -prune \) -type f -name "G*" Have... (6 Replies)
Discussion started by: alexkav
6 Replies

3. UNIX for Dummies Questions & Answers

making a recursive find more useful..

Hi everyone, I'm using a recursive find (you know the type, find . -name qwert*) to find a set of files. However, because I'm new to the system and there is not much documentation about these particular files I'm trying to find them using this recursive find. I started off at the location... (3 Replies)
Discussion started by: spanish_tony
3 Replies

4. Shell Programming and Scripting

Recursive find and store

I HAVE A TEXT FILE CONTAINING THE VALUES 1.CPP 2.CPP 3.CPP 4.CPP 5.CPP 6.CPP I WANT TO TAKE EACH .CPP AND USE THE FIND COMMAND TO FIND THE LATEST VERSION OF THE FOLDER IN WHICH IT IS PRESENT. HOW DO I IMPLEMENT IT IN A WHILE LOOP I TRIED SOMETHING LIKE THIS WHILE CAT... (3 Replies)
Discussion started by: ultimatix
3 Replies

5. UNIX for Advanced & Expert Users

Non recursive find command

Hi, I have question is related to find command. I want to find command should search in current folder only not recursive mode(sub-folders). I found a one way of, find . \( -name success -prune \) -o -name "Rajini*" How ever, my current folder is having lots sub-folders and am not... (7 Replies)
Discussion started by: Nagapandi
7 Replies

6. UNIX for Advanced & Expert Users

Recursive directory search using ls instead of find

I was working on a shell script and found that the find command took too long, especially when I had to execute it multiple times. After some thought and research I came up with two functions. fileScan() filescan will cd into a directory and perform any operations you would like from within... (8 Replies)
Discussion started by: newreverie
8 Replies

7. Shell Programming and Scripting

Tricky recursive removal (find with grep)

Tricky one: I want to do several things all at once to blow away a directory (rm -rf <dir>) 1) I want to find all files recursively that have a specific file extension (.ver) for example. 2) Then in that file, I want to grep for an expression ( "sp2" ) for example. 3) Then I want to... (1 Reply)
Discussion started by: jvsrvcs
1 Replies

8. UNIX for Dummies Questions & Answers

Non Recursive Find Command

Hello Unix Gurus, I am using the following find commands: 1) find Input_Path -name '*.' -exec mv -f {} Outputpath \; 2) find Inputpath -name '*.' -exec cp {} Outputpath \; 3) find Somepath -name '*.' Now the problem is my Unix version does not support maxdepth Option for find... (7 Replies)
Discussion started by: pchegoor
7 Replies

9. UNIX for Dummies Questions & Answers

Recursive Find on file size

Is there a way to use the find command to recursively scan directories for files greater than 1Gb in size and print out the directory path and file name only? Thanks in advance. (6 Replies)
Discussion started by: jimbojames
6 Replies

10. UNIX for Dummies Questions & Answers

Help needed - find command for recursive search

Hi All I have a requirement to find the file that are most latest to be modified in each directory. Can somebody help with the command please? E.g of the problem. The directory A is having sub directory which are having subdirectory an so on. I need a command which will find the... (2 Replies)
Discussion started by: sudeep.id
2 Replies
JAZIPCONFIG(8)						      System Manager's Manual						    JAZIPCONFIG(8)

NAME
jazipconfig - jazip(1) configuration tool. SYNOPSIS
jazipconfig [--non-interactive] DESCRIPTION
The jazipconfig script is a tool to easily build the /etc/jazip.conf file for the configuration of jazip(1) OPTIONS
The optional --non-interactive command line parameter instructs jazipconfig to do what it can to build a /etc/jazip.conf file without prompting the user. On Debian systems, the command is invoked this way by the jazip package post-installation script. In this non-interactive mode, the script looks through /proc/scsi/scsi for detected Zip or Jaz devices. If it find any, it looks up /etc/fstab to see if it can find already specified mount points for them. If (and only if) it finds mount points, it writes the device and mount point to /etc/jazip.conf INTERACTIVE USE
If no command line options are provided, jazipconfig runs interactively. In this case, it also looks through /proc/scsi/scsi for detected Zip or Jaz devices. If it find any, it looks up /etc/fstab to see if it can find already specified mount points for them. Then it creates a user menu which you can use to create the /etc/jazip.conf file. NOTES
The first entry listed in /etc/jazip.conf is the default device used when jazip is called without an argument. SEE ALSO
jazip(1), jazip.conf(5) AUTHOR
Copyright (c) 1999 Peter S Galbraith <psg@debian.org> This manual page by Peter S Galbraith <psg@debian.org> for the Debian GNU/Linux system (but may be used by others). JAZIPCONFIG(8)
All times are GMT -4. The time now is 08:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy