Sponsored Content
Full Discussion: to find a file
Top Forums Shell Programming and Scripting to find a file Post 302423616 by skatpally on Friday 21st of May 2010 12:29:12 PM
Old 05-21-2010
to find a file

Hello guys,
I amtrying to find files that end with .msh in the directory and sub directory of home folder. I used find command but it gives me error.

$ find -/home '*.msh'

find: invalid predicate `-/home'
plz help
 

9 More Discussions You Might Find Interesting

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

2. UNIX for Dummies Questions & Answers

how to find a file named vijay in a directory using find command

I need to find whether there is a file named vijay is there or not in folder named "opt" .I tried "ls *|grep vijay" but it showed permission problem. so i need to use find command (6 Replies)
Discussion started by: amirthraj_12
6 Replies

3. UNIX for Dummies Questions & Answers

How to find a file whick is consuming larger disk space in file system

Hello, Can anybody please tell me the command to find out the filesystem or a file which is consuming larger disk space sing i want to find out the file and want to compress it please help me out any help would be appreciated (6 Replies)
Discussion started by: lokeshpashine
6 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

How to find a file with a specific pattern for current sysdate & upon find email the details?

I need assistance with following requirement, I am new to Unix. I want to do the following task but stuck with file creation date(sysdate) Following is the requirement I need to create a script that will read the abc/xyz/klm folder and look for *.err files for that day’s date and then send an... (4 Replies)
Discussion started by: PreetArul
4 Replies

9. Shell Programming and Scripting

Can you use find with ps or doing find excluding file in use

Hi, I am currently using the find below to remove old files. I am redirecting the listing to a file and then use a while-loop and do a rm cd ${directory} find . \( ! -name . -prune \) \( -type f -name "*.trc" -mtime +10 \) | sed 's#^./##' | sed "s#^#${directory}/#" 2>/dev/null | tee -a... (4 Replies)
Discussion started by: newbie_01
4 Replies
MSH(1)								     [nmh-1.5]								    MSH(1)

NAME
msh - nmh shell (and BBoard reader) SYNOPSIS
msh [-prompt string] [-scan | -noscan] [-topcur | -notopcur] [file] [-version] [-help] DESCRIPTION
msh is an interactive program that implements a subset of the normal nmh commands operating on a single file in packf'dformat. That is, msh is used to read a file that contains a number of messages, as opposed to the standard nmh style of reading a number of files, each file being a separate message in a folder. msh's chief advantage is that the normal nmh style does not allow a file to have more than one mes- sage in it. Hence, msh is ideal for reading BBoards, as these files are delivered by the transport system in this format. In addition, msh can be used on other files, such as message archives which have been packed (see packf(1)). Finally, msh is an excellent nmh tutor. As the only commands available to the user are nmh commands, this allows nmh beginners to concentrate on how commands to nmh are formed and (more or less) what they mean. When invoked, msh reads the named file, and enters a command loop. The user may type most of the normal nmh commands. The syntax and semantics of these commands typed to msh are identical to their nmh counterparts. In cases where the nature of msh would be inconsistent (e.g., specifying a +folder with some commands), msh will duly inform the user. The commands that msh currently supports (in some slightly modified or restricted forms) are: ali burst comp dist folder forw inc mark mhmail mhn msgchk next packf pick prev refile repl rmm scan send show sortm whatnow whom In addition, msh has a help command which gives a brief overview. To terminate msh, type CTRL-D, or use the quit command. If the file is writable and has been modified, then using quit will query the user if the file should be updated. The -prompt string switch sets the prompting string for msh. You may wish to use an alternate nmh profile for the commands that msh executes; see mh-profile(5) for details about the $MH environment variable. The exit command is identical to the quit command in msh. msh supports an output redirection facility. Commands may be followed by one of ^> file~^write output to file ^>> file~^append output to file ^| command~^pipe output to UNIX command If file starts with a " " (tilde), then a csh-like expansion takes place. Note that command is interpreted by sh. Also note that msh does NOT support history substitutions, variable substitutions, or alias substitutions. When parsing commands to the left of any redirection symbol, msh will honor `' (back-slash) as the quote next-character symbol, and `"' (double-quote) as quote-word delimiters. All other input tokens are separated by whitespace (spaces and tabs). FILES
$HOME/.mh_profile The user profile /etc/nmh/mts.conf nmh mts configuration file PROFILE COMPONENTS
Path: To determine the user's nmh directory Msg-Protect: To set mode when creating a new `file' fileproc: Program to file messages showproc: Program to show messages SEE ALSO
packf(1) DEFAULTS
`file' defaults to "./msgbox" `-prompt (msh) ' `-noscan' `-notopcur' CONTEXT
None BUGS
The argument to the -prompt switch must be interpreted as a single token by the shell that invokes msh. Therefore, one must usually place the argument to this switch inside double-quotes. There is a strict limit of messages per file in packf'd format which msh can handle. Usually, this limit is 1000 messages. Please remember that msh is not the C-Shell, and that a lot of the nice facilities provided by the latter are not present in the former. In particular, msh does not understand back-quoting, so the only effective way to use pick inside msh is to always use the -seq select switch. Clever users of nmh will put the line pick: -seq select -list in their .mh_profile file so that pick works equally well from both the shell and msh. sortm always uses -noverbose and if -textfield field is used, -limit 0. The msh program inherits most (if not all) of the bugs from the nmh commands it implements. MH.6.8 11 June 2012 MSH(1)
All times are GMT -4. The time now is 02:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy