Sponsored Content
Top Forums UNIX for Dummies Questions & Answers how to find a file named vijay in a directory using find command Post 302094163 by Perderabo on Wednesday 25th of October 2006 04:57:14 PM
Old 10-25-2006
Actually "hangs up" usually means "did not respond as fast as I would like". It could be that /opt is very large and/or is a slow filesystem.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

using find command only in current directory

I am trying to use the find command to find files in the current directory that meet a certain date criteria. find . -type -f -mtime +2 However, the above also checks the directories below. I tried -prune, but that seems to ignore this directory completely. I read about using -path w/... (5 Replies)
Discussion started by: jliebling
5 Replies

2. Shell Programming and Scripting

how to find a file in UNIX without find command?

given a start directory,a filename,how to find it? (3 Replies)
Discussion started by: bluo
3 Replies

3. UNIX for Dummies Questions & Answers

how to use sed or perl command to find and replace a directory in a file

how to use sed command to find and replace a directory i have a file.. which contains lot of paths ... for eg.. file contains.. /usr/kk/rr/12345/1 /usr/kk/rr/12345/2 /usr/kk/rr/12345/3 /usr/kk/rr/12345/4 /usr/kk/rr/12345/5 /usr/kk/rr/12345/6 /usr/kk/rr/12345/7... (1 Reply)
Discussion started by: wip_vasikaran
1 Replies

4. Linux

Simplified find command to find multiple file types

Hi, I'm using the following command to find the multiple requierd file types and its working fine find . -name "*.pl" -o -name "*.pm" -o -name "*.sql" -o -name "*.so" -o -name "*.sh" -o -name "*.java" -o -name "*.class" -o -name "*.jar" -o -name "*.gz" -o -name "*.Z" -type f Though... (2 Replies)
Discussion started by: vickramshetty
2 Replies

5. Shell Programming and Scripting

How to use grep & find command to find references to a particular file

Hi all , I'm new to unix I have a checked project , there exists a file called xxx.config . now my task is to find all the files in the checked out project which references to this xxx.config file. how do i use grep or find command . (2 Replies)
Discussion started by: Gangam
2 Replies

6. Shell Programming and Scripting

Find multiple string in one file using find command

Hi, I want find multiple string in one file using find coomand. And keeping it in one variable.grep is not working. (5 Replies)
Discussion started by: vivek1489
5 Replies

7. 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

8. Shell Programming and Scripting

Find every directory named XYZ under the DVLP directory

I only want to find files under each branch of the directory tree inside directories named XYZ and there are multiple XYZ directories? (7 Replies)
Discussion started by: emc^24sho
7 Replies

9. Shell Programming and Scripting

Find Command Include Sub Directory

This script writes the output files to FILES but I don't want to exclude all directories from ABC_CHQ and LYS_ADV, I want to include one sub directory name process which is under ABC_CHQ and LYS_ADV in the search. Right now its excluding everything from prune directories such as ABC_CHQ, LYS_ADV... (10 Replies)
Discussion started by: John William
10 Replies

10. Shell Programming and Scripting

How-To Exclude Directory in find command

How can i tweak the below find command to exclude directory/s -> "/tmp/logs" find . -type f \( ! -name "*.log*" ! -name "*.jar*" \) -printNote: -path option/argument does not work with the version of find that i have. bash-3.2$ uname -a SunOS mymac 5.10 Generic_150400-26 sun4v sparc sun4v (7 Replies)
Discussion started by: mohtashims
7 Replies
CONVMVFS(1)						      General Commands Manual						       CONVMVFS(1)

NAME
convmvfs - utility that mirrors a whole filesystem tree from one charset to another. SYNOPSIS
convmvfs mountpoint [ options ] DESCRIPTION
This manual page documents briefly the convmvfs command. convmvfs is a FUSE (File System in Userspace) utility that transparently mirrors a filesystem tree converting the filenames from one charset to another on the fly. Only the names of files and directories are converted, the file content remains intact. The mirrored tree is mounted at the given mountpoint. OPTIONS
General options -o opt[,opt...] mount options -h, --help print help -V, --version print version -h, --help show summary of options FUSE options -d, -o debug enable debug output (implies -f) -f foreground operation -s disable multi-threaded operation -o Mount options are specified with a -o flag followed by a comma separated list of options. The following options are recognized: allow_other allow access to other users allow_root allow access to root nonempty allow mounts over non-empty file/dir default_permissions enable permission checking by kernel fsname=NAME set filesystem name large_read issue large read requests (2.4 only) max_read=N set maximum size of read requests hard_remove immediate removal (don't hide files) use_ino let filesystem set inode numbers readdir_ino try to fill in d_ino in readdir direct_io use direct I/O kernel_cache cache files in kernel umask=M set file permissions (octal) uid=N set file owner gid=N set file group entry_timeout=T cache timeout for names (1.0s) negative_timeout=T cache timeout for deleted names (0.0s) attr_timeout=T cache timeout for attributes (1.0s) srcdir=PATH which directory to convert icharset=CHARSET charset used in srcdir ocharset=CHARSET charset used in mounted filesystem NOTES
If you use a normal user account to mount the file system be sure to have r/w permissions to /dev/fuse. Use iconv --list to see which charsets are supported. To allow other users to access the mount point use allow_other option. IMPORTANT: if the mount point and srcdir point at the same directory, readdir call will enter a dead loop. BE SURE TO AVOID THIS SITUA- TION! SAMPLE USE
to mount: $ convmvfs /ftp/pub_gbk -o srcdir=/ftp/pub,icharset=utf8,ocharset=gbk to unmount: $ fusermount -u /ftp/pub_gbk SEE ALSO
fusermount(1), mount(8) AUTHOR
convmvfs was written by Z.C. Miao <hellwolf.misty@gmail.com>. This manual page was written by Stanislav Maslovski <stanislav.maslovski@gmail.com>, for the Debian project (but may be used by others). October 3, 2007 CONVMVFS(1)
All times are GMT -4. The time now is 11:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy