Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to Find Files other than specified directory ? Post 302796337 by bakunin on Friday 19th of April 2013 09:27:36 AM
Old 04-19-2013
Instead of ".", which is short for "the currect directory" use a real path. You can even put this into a variable like you did with the archiving time. For instance:

Code:
SearchPath="/opt/findev1/dfsdev1/dfsapp/Finacle/FC10.5.02/app/CDCI_LOGS"

find "$SearchPath" -name "*.log" -mtime +$Arch_days -exec gzip -f {} \;

I hope this helps.

bakunin
 

10 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

find the 5o largest files in a directory

I'm trying to find the 50 largest file in a directory named /sasdb and its' subdirectories. I'm using the find command and a pipe to awk Not sure if I'm actually getting the largest files from this directory and its subdirectories. Here is the code I used... find /sasdb -ls | awk '{print... (8 Replies)
Discussion started by: igidttam
8 Replies

2. Shell Programming and Scripting

Find files in directory

Hi all I want to find a particular file type lets say .abc under /home/oracle/, the file name is start with 'D' and followed by ddmmyyyy date format, the file name should look like this D19092008.abc To my question, how can i perform the searching from the date 19/09/2008 to 29/09/2008. The... (3 Replies)
Discussion started by: coldstarhk
3 Replies

3. UNIX for Dummies Questions & Answers

How to find a word in a all the files in a Directory??

I want to find a specific word present in all the files ina directory....Please tell me the command to be used?? Thanks (6 Replies)
Discussion started by: shikhakaul
6 Replies

4. UNIX for Dummies Questions & Answers

Need help to find the files under a directory

Hi, I wanted to delete all the files under a directory "/apps/tmp/" which are two weeks older. But i should not delete the sub-directories and the contents of sub-directories. I also have searched in forum and found the following command, find . \( ! -name . -prune \) -mtime +13 -print ... (8 Replies)
Discussion started by: Sheethal
8 Replies

5. UNIX for Dummies Questions & Answers

Find files and display only directory list containing those files

I have a directory (and many sub dirs beneath) on AIX system, containing thousands of file. I'm looking to get a list of all directory containing "*.pdf" file. I know basic syntax of find command, but it gives me list of all pdf files, which numbers in thousands. All I need to know is, which... (4 Replies)
Discussion started by: r7p
4 Replies

6. Shell Programming and Scripting

Find files ONLY in current directory

Hello all, I am having a hard type in figuring out how to only gather certain files in the current directory without exploring its subdirectories. I tried: find . -name "*.ksh" -prune this also returns ksh files from lower subdirectories. I also tried find . -ls -name "*.ksh" This also... (8 Replies)
Discussion started by: gio001
8 Replies

7. UNIX for Advanced & Expert Users

How can I find out the open files in a directory

Hello all, Is there any other way of finding the open files in a directory apart from command 'lsof'. thanks (3 Replies)
Discussion started by: joshi123
3 Replies

8. UNIX for Dummies Questions & Answers

How to find and copy files from one directory to another

Ok i have three directories Destination - /u/dir1 (has subdirectories dir2 which also has subdirectory dir3) Source1 - /u/test/files/dir1/dir2/dir3 Source2 - /u/out/images/dir1/dir2/dir3 What i would like to do is copy everything from Source1 and Source2 into the Destination directory.... (3 Replies)
Discussion started by: ziggy25
3 Replies

9. UNIX for Advanced & Expert Users

Find all files in the current directory excluding hidden files and directories

Find all files in the current directory only excluding hidden directories and files. For the below command, though it's not deleting hidden files.. it is traversing through the hidden directories and listing normal which should be avoided. `find . \( ! -name ".*" -prune \) -mtime +${n_days}... (7 Replies)
Discussion started by: ksailesh1
7 Replies

10. UNIX for Dummies Questions & Answers

find Files in sub-directory

Hi Just want to ask, Is it possible to find a file from a directory up to its sub-directories? Thanks, cmarzan (10 Replies)
Discussion started by: cmarzan
10 Replies
sb2-show(1)							 sb2-show man page						       sb2-show(1)

NAME
sb2-show - sb2 diagnostics tool SYNOPSIS
sb2-show [-b binary_name ] [-m mode ] [-f function ] [-D ] [-v ] command [parameters] DESCRIPTION
sb2-show is a tool for querying and testing what scratchbox2 does "behind the scenes". The two most common uses are testing path mapping (commands path and which ) and finding out how programs are executed (the exec command). Additionally, there are some commands that are intended to be used internally by scratchbox2 itself, and not so useful for a normal user. sb2-show must be executed inside a scratchbox2 session (see sb2(1) for details about creating sessions) COMMANDS
Common commands: path [path1] [path2] [pathN] Show mapping results for listed pathnames which [path1] [path2].. Show mappings of pathnames, a less verbose variant of the path command (useful when using sb2-show from scripts) exec program_path [arg1] [arg2].. Show how a program would be executed, together with environment modifications. realcwd Show real current working directory (Inside a session /bin/pwd will usually report virtual paths, and this is the only way to deter- mine the real wroking directory). Commands for non-interactive use and debugging of scratchbox2: exec-cmdline file [argv1] [argv2].. show execve() modifications on a single line (does not show full details, useful when using sb2-show from scripts) log-error 'message' Add an error message to the logfile log-warning 'message' Add a warning message to the logfile verify-pathlist-mappings required-fix [ignorelist] Reads list of paths from stdin and checks that all paths will be mapped to a required prefix. This is used by sb2-check-pkg-map- pings, (an internal utility). execluafile filename Load and execute Lua code from file. binarytype realpath detect & show type of program at realpath (which is an already mapped path) var variablename show value of an internal string variable libraryinterface show preload library interface version (the Lua <-> C code interface) qemu-debug-exec file argv0 [argv1] [argv2].. show command line that can be used to start target binary under qemu gdbserver OPTIONS
-v verbose. -b binary_name show using binary_name as name of the calling program -f function show using function as callers name (full name of library or system call) -D Ignore directories while verifying path lists (effective only for the verify-pathlist-mappings command) -t report elapsed time (real time elapsed while executing the command) -x file Load and execute Lua code from file before executing the command. Useful for debugging and tuning lua scripts of sb2. -X file Load and execute Lua code from file after executing the command. Useful for debugging and tuning lua scripts of sb2. -g port use port as qemu gdbserver listening port (default port is 1234). See command qemu-debug-exec EXAMPLES
Show where the /etc directory gets mapped: $ sb2 sb2-show path /etc /etc => /opt/maemo/tools/etc (readonly) (exact results depend on how sb2-init was executed; what mapping mode is the default, etc.) Typically, home directories are not mapped: $ sb2 sb2-show path /home/yourname /home/yourname => /home/yourname In development modes, host-compatible versions of tools are executed: $ sb2 sb2-show exec /bin/ls File /bin/ls Mapped /opt/maemo/tools/bin/ls (readonly) argv[0] /bin/ls ... But in the emulation mode, only target's executables are used. Try also: $ sb2 -e sb2-show exec /bin/ls SEE ALSO
sb2(1), sb2-config(1), sb2-logz(1), sb2-init(1) AUTHOR
Lauri Aarnio 2.2 17 December 2010 sb2-show(1)
All times are GMT -4. The time now is 06:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy