Sponsored Content
Full Discussion: find - link - error
Top Forums UNIX for Dummies Questions & Answers find - link - error Post 302388701 by Cranie on Thursday 21st of January 2010 06:59:44 AM
Old 01-21-2010
find - link - error

Have a random question:

In simple terms I have a find command on a dir:

/path/user/data/

/path/user is a link to:

/tmp/storage/


The find command outputs the files it finds as:

/path/user/data/file

What I need is:

/tmp/storage/file

Is there a way to "resolve" the Unix (Aix) file to its true location? Have tried numerous find options but to no avail.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how find the link of the file

Hi, I have a flat file which is used by a program. I dont know the program name .This file is in used by that program which is still running ? Is there any way to find out which program is accessing this file just by knowing the file name? Can we check some thing in "ps" just by knowing only... (8 Replies)
Discussion started by: Manish Jha
8 Replies

2. Shell Programming and Scripting

How to link lsof and find cmd?

Hi All, My target is to find the biggest files opened by any process and from that i have to find process id and the corresponding file also to avoid file system being hung-up. Finding the process id: is to kill the process Finding the biggest file: is to remove the file To get the process... (0 Replies)
Discussion started by: Arunprasad
0 Replies

3. UNIX for Dummies Questions & Answers

How to find .dat file in symbolic link

Hi, I am trying to find all files in a directory that have .dat and .int extensions and removing them. rm -f `find ${MY_DIR} -type f -name '*.dat' -o -name '*.int'` This works fine if $MY_DIR is a regular directory. However when $MY_DIR is a symbolic link then this command fails. How... (1 Reply)
Discussion started by: neeto
1 Replies

4. Shell Programming and Scripting

How to find link files

How to find the link files. i have main file, now i want to find all the files linked to it. (4 Replies)
Discussion started by: aju_kup
4 Replies

5. Shell Programming and Scripting

Find Hard Link

Goodmorning everybody. A question: How can i match if a file is an hard link or not? (6 Replies)
Discussion started by: Guccio
6 Replies

6. Shell Programming and Scripting

Find and symbolic link modification time

Hi, I have a directory made up of many symbolic links to folders multiple file systems. I want to return folders modified within the last 50 days, but find is using the link time rather than the target time. find . -type d -mtime -50 Is there a way to either: a) Make a symbolic link... (1 Reply)
Discussion started by: earls
1 Replies

7. Solaris

Not able to find the link for downloading

Hi, Please let me know the link for downloading gcc.c2.95.3-p5 of Solaris 10. Thanks in advance. (3 Replies)
Discussion started by: dudala
3 Replies

8. Shell Programming and Scripting

How to bin/find w/ -follow without searching both link and target

I am interested in searching links to files not found within a directory, so I use the -follow option. However, the dir may contain links to files that are also found within the dir. That means if I bin/find a bunch of files then search their contents using grep, I get redundant information. An... (1 Reply)
Discussion started by: stevensw
1 Replies

9. Shell Programming and Scripting

wanted to find both link file and ordinary file using single find command

find . -type fl o/p is only the ordinary file. where in it wont give the link files. (2 Replies)
Discussion started by: nikhil jain
2 Replies

10. UNIX for Dummies Questions & Answers

AIX - find also in symbolic link

Hi, i tried to search a string, recursively, in subdirectories with: find . -type f -print | xargs grep -s hello i found all files that contain the string "hello" but i would perform a search also in symbolic link, so i tried with find -L . -print | xargs grep -s hello but no result was... (3 Replies)
Discussion started by: nash83
3 Replies
DOVEADM-ALTMOVE(1)						      Dovecot							DOVEADM-ALTMOVE(1)

NAME
doveadm-altmove - Move matching mails to the alternative storage (dbox-only) SYNOPSIS
doveadm [-Dv] altmove [-r] [-S socket_path] search_query doveadm [-Dv] altmove [-r] [-S socket_path] -A search_query doveadm [-Dv] altmove [-r] [-S socket_path] -u user search_query DESCRIPTION
This command can be used with sdbox or mdbox storage to move mails to alternative storage path when :ALT=<path> is specified for the mail location. In the first form, doveadm(1) will executed the altmove action with the environment of the logged in system user. In the second form, the command will be performed for all users. In the third form, only matching mails of the given user(s) will be moved to the alternative storage. OPTIONS
Global doveadm(1) options: -D Enables verbosity and debug messages. -v Enables verbosity, including progress counter. Command specific options: -A If the -A option is present, the command will be performed for all users. Using this option in combination with system users from userdb { driver = passwd } is not recommended, because it contains also users with a lower UID than the one configured with the first_valid_uid setting. When the SQL userdb module is used make sure that the iterate_query setting in /etc/dovecot/dovecot-sql.conf.ext matches your data- base layout. When using the LDAP userdb module, make sure that the iterate_attrs and iterate_filter settings in /etc/dovecot/dove- cot-ldap.conf.ext match your LDAP schema. Otherwise doveadm(1) will be unable to iterate over all users. -r When the -r option is given this command works the other way round. Mails will be moved from the alternative storage back to the default mail location. -S socket_path The option's argument is either an absolute path to a local UNIX domain socket, or a hostname and port (hostname:port), in order to connect a remote host via a TCP socket. This allows an administrator to execute doveadm(1) mail commands through the given socket. -u user/mask Run the command only for the given user. It's also possible to use '*' and '?' wildcards (e.g. -u *@example.org). When neither the -A option nor -u user was specified, the command will be executed with the environment of the currently logged in user. ARGUMENTS
search_query Messages matching this search query will be moved to alt storage. See doveadm-search-query(7) for details. FILES
/etc/dovecot/conf.d/10-mail.conf Mailbox locations and namespaces. /etc/dovecot/conf.d/auth-*.conf.ext Authentication processes, including userdb settings. EXAMPLE
This example moves seen mails older than one week to alternative storage under /nfsmount: mail_location = mdbox:~/mdbox:ALT=/nfsmount/%h/mdbox doveadm altmove -u johnd@example.com seen savedbefore 1w REPORTING BUGS
Report bugs, including doveconf -n output, to the Dovecot Mailing List <dovecot@dovecot.org>. Information about reporting bugs is avail- able at: http://dovecot.org/bugreport.html SEE ALSO
doveadm(1), doveadm-search-query(7) Dovecot v2.1 2011-09-15 DOVEADM-ALTMOVE(1)
All times are GMT -4. The time now is 05:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy