.\"O .TH FIND 1 \" -*- nroff -*- .TH FIND 1 '\" t .\"O ---------------------------------------- .\"O .SH NAME .\"O find \- search for files in a directory hierarchy .SH 名前 find \- ディレクトリ階層内のファイル検索 .\"O ---------------------------------------- .\"O .SH SYNOPSIS .\"O .B find .\"O [\-H] [\-L] [\-P] [\-D debugopts] [\-Olevel] [starting-point...\&] [expression] .\"O . .SH 書式 \fBfind\fP [\-H] [\-L] [\-P] [\-D debugopts] [\-Olevel] [starting\-point...\&] [expression] . .\"O ---------------------------------------- .\"O .SH DESCRIPTION .\"O This manual page .\"O documents the GNU version of .\"O .BR find . .\"O GNU .\"O .B find .\"O searches the directory tree rooted at each given starting-point by .\"O evaluating the given expression from left to right, according to the .\"O rules of precedence (see section OPERATORS), until the outcome is .\"O known (the left hand side is false for \fIand\fR operations, true for .\"O .IR or ), .\"O at which point .\"O .B find .\"O moves on to the next file name. If no starting-point is specified, .\"O `.\&' is assumed. .SH 説明 このマニュアルページは GNU 版 \fBfind\fP の使用法を説明しています。 GNU \fBfind\fP は、 指定された検索開始ポイント (starting\-point) を基準にして、 ディレクトリツリーを検索します。 そして優先規則に従って (「オペレーター」のセクション参照)、 指定された式 (expression) を左から右の順で評価していきます。 たとえば、 \fIand\fP 演算で左辺が false になった場合や、 \fIor\fP 演算で左辺が true になった場合のように、 式の結果が確定すると、 \fBfind\fP は次のファイル名を処理対象とします。 検索開始ポイントが指定されていない場合は、 `.\&' が指定されたものとみなします。 .\"O ---------------------------------------- .\"O .PP .\"O If you are using .\"O .B find .\"O in an environment where security is important (for example if you are .\"O using it to search directories that are writable by other users), you .\"O should read the `Security Considerations' chapter of the findutils .\"O documentation, which is called \fBFinding Files\fP and comes with .\"O findutils. .\"O That document also includes a lot more detail .\"O and discussion than this manual page, so you may find it a more useful .\"O source of information. .\"O . .PP セキュリティを重視する必要がある状況 (たとえば、 別ユーザーが書き込み可能なディレクトリを、 自分が検索しようとしている場合) のもとで、 \fBfind\fP を利用する場合には、 findutils 文書の 「Security Considerations」の章をよく読んでください。 この文書は \fBFinding Files\fP というものであり、 findutils に含まれています。 この文書の方がマニュアルページに比べて、 詳しい説明や検討が行われているので、 役に立つ情報が得られるかもしれません。 . .\"O ---------------------------------------- .\"O .SH OPTIONS .\"O The .\"O .BR \-H , .\"O .B \-L .\"O and .\"O .B \-P .\"O options control the treatment of symbolic .\"O links. Command-line arguments following these are taken to be names .\"O of files or directories to be examined, up to the first argument that .\"O begins with `\-', or the argument `(' or `!'. That argument and any .\"O following arguments are taken to be the expression describing what is .\"O to be searched for. If no paths are given, the current directory is .\"O used. If no expression is given, the expression .\"O .B \-print .\"O is used .\"O (but you should probably consider using .\"O .B \-print0 .\"O instead, anyway). .SH オプション \fB\-H\fP, \fB\-L\fP, \fB\-P\fP というオプションは、 シンボリックリンクの取り扱いを制御します。 このオプションに続くコマンドライン引数は、 検索対象となるファイル名やディレクトリ名として扱われます。 ただしそのように扱われるのは、 次に `\-' で始まる引数や、 `(' や `!' という引数が現れるところまでです。 その引数以降の記述は、 検索方法を示した式として扱われます。 検索開始ポイントのパスが指定されなかった場合は、 カレントディレクトリが検索対象になります。 また、 式が指定されなかった場合は、 式 \fB\-print\fP が使用されます (ただしどのような場合でも、 \fB\-print\fP ではなく \fB\-print0\fP の利用を検討してください)。 .\"O ---------------------------------------- .\"O .PP .\"O This manual page talks about `options' within the expression list. .\"O These options control the behaviour of .\"O .B find .\"O but are specified immediately after the last path name. The five .\"O `real' options .\"O .BR \-H , .\"O .BR \-L , .\"O .BR \-P , .\"O .B \-D .\"O and .\"O .B \-O .\"O must appear before .\"O the first path name, if at all. A double dash .\"O .B \-\- .\"O could theoretically be used to signal that any remaining arguments .\"O are not options, but this does not really work due to the way .\"O .B find .\"O determines the end of the following path arguments: it does that by reading .\"O until an expression argument comes (which also starts with a `-'). .\"O Now, if a path argument would start with a `-', then .\"O .B find .\"O would treat it as expression argument instead. .\"O Thus, to ensure that all start points are taken as such, and especially to .\"O prevent that wildcard patterns expanded by the calling shell are not mistakenly .\"O treated as expression arguments, it is generally safer to prefix wildcards or .\"O dubious path names with either `./' or to use absolute path names starting .\"O with '/'. .PP このマニュアルページでは、 式の中で用いる「オプション」について説明しています。 オプションは、 \fBfind\fP の動作を制御します。 これを指定するのは、 パス名の指定を終えた後ろです。 これとは別に、 「本当の」オプションとして \fB\-H\fP, \fB\-L\fP, \fB\-P\fP, \fB\-D\fP, \fB\-O\fP という 5 つがあります。 これを用いるのであれば、 パス名の指定よりも前でなければなりません。 なお仕様上は、 ダッシュを 2 つ重ねた \fB\-\-\fP を使用することで、 それ以降の引数が、 オプションでないことを表すことができるとされます。 ただし、 この後に続く引数がパス引数であるかどうかを決定する処理が原因となって、 2 重のダッシュは実際には動作しません。 つまり式を表す引数 (これも `\-' で始まります) が現れるところまで、 引数を読み込むことで、 パス引数の終わりが判断されます。 仮にパス引数が `\-' で始まっていたとしたら、 \fBfind\fP はこれを式として取り扱ってしまいます。 このように、 検索開始点であるパス引数は、 適切に解釈されない場合があり、 他にも、 ワイルドカードパターンをシェルが展開する際に、 誤って式のように展開してしまうことがあります。 このような状況を避けるため、 一般的に行う安全策としては、 不安に思うパス名称やワイルドカードの前には、 `./' をつけるようにするか、 '/' で始まる絶対パス名を用いるようにします。 .\"O ---------------------------------------- .\"O .IP \-P .\"O Never follow symbolic links. This is the default behaviour. When .\"O .B find .\"O examines or prints information about files, and the file is a symbolic .\"O link, the information used shall be taken from the properties of the .\"O symbolic link itself. .IP \-P シンボリックリンクをたどりません。 これがデフォルトの動作です。 \fBfind\fP がファイルの情報を調べたり表示したりする際に、 そのファイルがシンボリックリンクであれば、 シンボリックリンクそのもののプロパティから取得される情報が用いられます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-L .\"O Follow symbolic links. When .\"O .B find .\"O examines or prints information about files, the information used shall .\"O be taken from the properties of the file to which the link points, not .\"O from the link itself (unless it is a broken symbolic link or .\"O .B find .\"O is unable to examine the file to which the link points). Use of this .\"O option implies .\"O .BR \-noleaf . .\"O If you later use the .\"O .B \-P .\"O option, .\"O .B \-noleaf .\"O will still be in effect. If .\"O .B \-L .\"O is in effect and .\"O .B find .\"O discovers a symbolic link to a subdirectory during its search, .\"O the subdirectory pointed to by the symbolic link will be searched. .IP \-L シンボリックリンクをたどります。 \fBfind\fP がファイルの情報を調べたり表示したりする際には、 リンク先ファイルのプロパティから情報が取得され利用されます。 つまりリンクそのものの情報は利用されません (ただし、 シンボリックリンクが切れていたり、 \fBfind\fP がリンク先のファイルを調べることができなかった場合は除きます)。 このオプションの指定は、 暗に \fB\-noleaf\fP の指定を含みます。 この指定の後ろに \fB\-P\fP オプションを指定しても、 \fB\-noleaf\fP の効果は変わりません。 \fB\-L\fP が有効であって、 \fBfind\fP がサブディレクトリを指し示すシンボリックリンクを見つけた場合は、 サブディレクトリ内が検索されます。 .\"O ---------------------------------------- .\"O .IP .\"O When the .\"O .B \-L .\"O option is in effect, the .\"O .B \-type .\"O predicate will always .\"O match against the type of the file that a symbolic link points to .\"O rather than the link itself (unless the symbolic link is broken). .\"O Actions that can cause symbolic links to become broken while .\"O .B find .\"O is executing (for example .\"O .BR \-delete ) .\"O can give rise to confusing behaviour. .\"O Using .\"O .B \-L .\"O causes the .\"O .B \-lname .\"O and .\"O .B \-ilname .\"O predicates always to return .\"O false. .IP \fB\-L\fP オプションが有効な場合に、 述語表現である \fB\-type\fP を用いると、 シンボリックリンクそのものではなく、 シンボリックリンク先のファイルのタイプに対して、 確認が行われます (リンク切れである場合は除きます)。 \fBfind\fP の実行中に、 シンボリックリンク切れを起こすようなアクションを行うと (たとえば、 \fB\-delete\fP を指定すると)、 混乱を招く動作が発生することになります。 \fB\-L\fP を使用すると、 述語表現の \fB\-lname\fP や \fB\-ilname\fP は必ず false を返します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-H .\"O Do not follow symbolic links, except while processing the command .\"O line arguments. When .\"O .B find .\"O examines or prints information about files, the information used .\"O shall be taken from the properties of the symbolic link itself. .\"O The only exception to this behaviour is when a file specified on the .\"O command line is a symbolic link, .\"O and the link can be resolved. .\"O For that situation, the information used is taken from whatever the .\"O link points to .\"O (that is, the link is followed). .\"O The information about the link itself is used as a fallback if the .\"O file pointed to by the symbolic link cannot be examined. .\"O If .\"O .B \-H .\"O is in effect and one of the .\"O paths specified on the command line is a symbolic link to a directory, .\"O the contents of that directory will be examined (though of course .\"O .B \-maxdepth\ 0 .\"O would prevent this). .IP \-H シンボリックリンクをたどりません。 ただしコマンドライン引数を処理する場合は別です。\fBfind\fP がファイルの情報を調べたり表示したりする際には、 シンボリックリンクそのものからプロパティを取得して、 その情報が利用されます。 このような動作は、 コマンドライン上のファイルがシンボリックリンクであった場合には行われません。 このときには、 リンク先が読み取られます。 つまりその状況では、リンク先が何であっても、 リンク先から取得した情報が利用されます (つまりリンクをたどります)。 シンボリックリンク自体の情報は、リンク先が確認できなかった場合の予備情報として利用されます。 \fB\-H\fP が有効であって、 コマンドラインで指定されたパスのうち、 ディレクトリへのシンボリックリンクがあった場合も、 そのディレクトリの中身が調べられることになります (ただし \fB\-maxdepth\ 0\fP が指定されていれば、 当然そのような処理にはなりません)。 .\"O ---------------------------------------- .\"O .P .\"O If more than one of .\"O .BR \-H , .\"O .B \-L .\"O and .\"O .B \-P .\"O is specified, each overrides the .\"O others; the last one appearing on the command line takes effect. .\"O Since it is the default, the .\"O .B \-P .\"O option should be considered to be in .\"O effect unless either .\"O .B \-H .\"O or .\"O .B \-L .\"O is specified. .P 複数の \fB\-H\fP, \fB\-L\fP, \fB\-P\fP を指定した場合は、 前のものが上書きされます。 つまり、 適用されるものは、 コマンドライン上で最後に指定されたものです。 \fB\-P\fP がデフォルトなので、 \fB\-H\fP や \fB\-L\fP の指定がなければ、 \fB\-P\fP オプションが有効であると判断できます。 .\"O ---------------------------------------- .\"O .\"O GNU .\"O .B find .\"O frequently stats files during the processing of the command line .\"O itself, before any searching has begun. These options also affect how .\"O those arguments are processed. Specifically, there are a number of .\"O tests that compare files listed on the command line against a file we .\"O are currently considering. In each case, the file specified on the .\"O command line will have been examined and some of its properties will .\"O have been saved. If the named file is in fact a symbolic link, and .\"O the .\"O .B \-P .\"O option is in effect (or if neither .\"O .B \-H .\"O nor .\"O .B \-L .\"O were specified), the information used for the comparison will be taken from .\"O the properties of the symbolic link. Otherwise, it will be taken from .\"O the properties of the file the link points to. If .\"O .B find .\"O cannot follow the link (for example because it has insufficient .\"O privileges or the link points to a nonexistent file) the properties of .\"O the link itself will be used. GNU \fBfind\fP は、 検索処理に入る前のコマンドライン処理においても、 ファイル情報を調べることがあります。 上に示したオプションは、 そのような引数の処理に対しても、 影響を及ぼします。 具体的に見てみると、 数多くのテストでは、 その時点で処理対象となっている 1 つのファイルと、 コマンドライン上の複数ファイルとの間で、 比較処理を行います。 どの状況でも、 コマンドラインから指定されたファイルは、 プロパティが調べられて、 その一部は保存されます。 引数上のファイルがシンボリックリンクであって、 \fB\-P\fP オプションが有効な場合 (あるいは \fB\-H\fP と \fB\-L\fP オプションの指定がどちらもない場合)、 比較処理に用いられるのは、 シンボリックリンクのプロパティ情報です。 そうでない場合には、 リンク先ファイルのプロパティ情報が用いられます。 \fBfind\fP がリンク先をたどれなかった場合 (たとえば権限が不足していた場合や、 リンク先が存在しないファイルであった場合)、 シンボリックリンクそのもののプロパティが用いられます。 .\"O ---------------------------------------- .\"O .P .\"O When the .\"O .B \-H .\"O or .\"O .B \-L .\"O options are in effect, any symbolic links listed as the argument of .\"O .B \-newer .\"O will be dereferenced, and the timestamp .\"O will be taken from the file to which the symbolic link points. The .\"O same consideration applies to .\"O .BR \-newerXY , .\"O .B \-anewer .\"O and .\"O .BR \-cnewer . .P \fB\-H\fP あるいは \fB\-L\fP オプションが有効な場合、 \fB\-newer\fP の引数として指定されたものがシンボリックリンクなら、 その参照をたどって、 リンク先のファイルからタイムスタンプを取得します。 このような処理は、 \fB\-newerXY\fP, \fB\-anewer\fP, \fB\-cnewer\fP でも同様に行われます。 .\"O ---------------------------------------- .\"O .\"O The .\"O .B \-follow .\"O option has a similar effect to .\"O .BR \-L , .\"O though it takes .\"O effect at the point where it appears (that is, if .\"O .B \-L .\"O is not used but .\"O .B \-follow .\"O is, any symbolic links appearing after .\"O .B \-follow .\"O on the .\"O command line will be dereferenced, and those before it will not). \fB\-follow\fP オプションは、 \fB\-L\fP と同様の効果がありますが、 オプションの指定位置以降に対して有効になります。 (つまり、 \fB\-L\fP を使わずに、 \fB\-follow\fP が使われた場合、 コマンドライン上、 シンボリックリンクが \fB\-follow\fP の後ろに指定されている場合は、 参照をたどるのに対して、 その前に指定されたものは参照をたどりません。) .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-D debugopts" .\"O Print diagnostic information; this can be helpful to diagnose problems .\"O with why .\"O .B find .\"O is not doing what you want. The list of debug options should be comma .\"O separated. Compatibility of the debug options is not guaranteed .\"O between releases of findutils. For a complete list of valid debug .\"O options, see the output of .\"O .BR "find \-D\ help" . .\"O Valid debug options include .IP "\-D debugopts" 診断情報を出力します。 \fBfind\fP が思うように動かない場合に、 原因調査に役立てることができます。 デバッグオプションを複数指定するときは、 カンマで区切ります。 findutils のリリース間において、 デバッグオプションの互換性は保証されません。 有効なデバッグオプションの一覧は、 \fBfind \-D\ help\fP の出力を確認してください。 有効なデバッグオプションには、 以下のものがあります。 .\"O ---------------------------------------- .\"O .RS .RS .\"O ---------------------------------------- .\"O .IP exec .\"O Show diagnostic information relating to \-exec, \-execdir, \-ok and \-okdir .IP exec \-exec, \-execdir, \-ok, \-okdir に関連する診断情報を表示します。 .\"O ---------------------------------------- .\"O .IP opt .\"O Prints diagnostic information relating to the optimisation of the .\"O expression tree; see the \-O option. .IP opt 式ツリー (expression tree) の最適化に関する診断情報を表示します。 \-O オプションを参照してください。 .\"O ---------------------------------------- .\"O .IP rates .\"O Prints a summary indicating how often each predicate succeeded or .\"O failed. .IP rates 述語表現が成功あるいは失敗した回数を、 取りまとめて表示します。 .\"O ---------------------------------------- .\"O .IP search .\"O Navigate the directory tree verbosely. .IP search ディレクトリツリーを詳細に示します。 .\"O ---------------------------------------- .\"O .IP stat .\"O Print messages as files are examined with the .\"O .B stat .\"O and .\"O .B lstat .\"O system calls. The .\"O .B find .\"O program tries to minimise such calls. .IP stat システムコールの \fBstat\fP や \fBlstat\fP を使って、 ファイルが調べられた場合に、 メッセージを表示します。 \fBfind\fP プログラムは、 そのようなシステムコールの呼び出しを、 最小となるように処理します。 .\"O ---------------------------------------- .\"O .IP tree .\"O Show the expression tree in its original and optimised form. .IP tree 式ツリー (expression tree) を、 元の形と最適化した形で示します。 .\"O ---------------------------------------- .\"O .IP all .\"O Enable all of the other debug options (but .\"O .BR help ). .IP all すべてのデバッグオプションを有効にします (ただし \fBhelp\fP は除きます)。 .\"O ---------------------------------------- .\"O .IP help .\"O Explain the debugging options. .IP help デバッグ用オプションを説明します。 .\"O ---------------------------------------- .\"O .RE .RE .\"O ---------------------------------------- .\"O .IP \-Olevel .\"O Enables query optimisation. .\"O The .\"O .B find .\"O program reorders tests to speed up execution while preserving the .\"O overall effect; that is, predicates with side effects are not .\"O reordered relative to each other. The optimisations performed at each .\"O optimisation level are as follows. .IP \-Olevel 問い合わせの最適化を有効にします。 \fBfind\fP プログラムは、 複数テスト全体の処理内容を変えることなく、 テストの順番を並べ替えて、 実行速度を上げます。 ただし、 副作用を持つ述語は、 他の述語と入れ替えは行いません。 最適化レベルごとの最適化の違いは以下のとおりです。 .\"O ---------------------------------------- .\"O .RS .RS .\"O ---------------------------------------- .\"O .IP 0 .\"O Equivalent to optimisation level 1. .IP 0 最適化レベル 1 と同じです。 .\"O ---------------------------------------- .\"O .IP 1 .\"O This is the default optimisation level and corresponds to the .\"O traditional behaviour. Expressions are reordered so that tests based .\"O only on the names of files (for example .\"O .B \-name .\"O and .\"O .BR \-regex ) .\"O are performed first. .IP 1 これはデフォルトの最適化レベルであり、 従来からある動作です。 ファイル名だけを確認するテスト (たとえば \fB\-name\fP や \fB\-regex\fP) が先に実行されるように、 式の並び替えを行います。 .\"O ---------------------------------------- .\"O .IP 2 .\"O Any .\"O .B \-type .\"O or .\"O .B \-xtype .\"O tests are performed after any tests based only on the names of files, .\"O but before any tests that require information from the inode. On many .\"O modern versions of Unix, file types are returned by .\"O .B readdir() .\"O and so these predicates are faster to evaluate than predicates which .\"O need to stat the file first. .\"O If you use the .\"O .B "\-fstype\ \fIFOO\fR" .\"O predicate and specify a filesystem type .\"O .I FOO .\"O which is not known (that is, present in `/etc/mtab') at the time .\"O .B find .\"O starts, that predicate is equivalent to .\"O .BR \-false . .IP 2 ファイル名だけを確認するテストよりも、\fB\-type\fP あるいは \fB\-xtype\fP を後に処理します。 ただし i ノードからの情報を必要とするテストよりは、 前に処理します。 最近の Unix では、 \fBreaddir()\fP 関数がファイルタイプを返すようになっているため、 これらの述語表現は、 ファイル情報を最初に調べる述語表現に比べて、 処理が高速になります。 述語表現の \fB\-fstype\fP \fIFOO\fP を用いた際に、 指定したファイルシステムタイプ \fIFOO\fP が、 \fBfind\fP の起動時点において不明なもの (`/etc/mtab' に存在しないもの) であった場合、 この述語表現は \fB\-false\fP に等しくなります。 .\"O ---------------------------------------- .\"O .IP 3 .\"O At this optimisation level, the full cost-based query optimiser is .\"O enabled. The order of tests is modified so that cheap (i.e.\& fast) .\"O tests are performed first and more expensive ones are performed later, .\"O if necessary. Within each cost band, predicates are evaluated earlier .\"O or later according to whether they are likely to succeed or not. For .\"O .BR \-o , .\"O predicates which are likely to succeed are evaluated earlier, and for .\"O .BR \-a , .\"O predicates which are likely to fail are evaluated earlier. .IP 3 この最適化レベルでは、 コストベースによって最適化を行う、 完全な問合せオプティマイザー (query optimiser) を有効にします。 コストの低い (つまり高速になる) テストを先に処理し、 コストの高いものは後に処理するというように、 必要に応じた並び替えが行われます。 一定のコストの幅の中では、 述語表現が成功するか否かの可能性を考慮して、 述語表現の評価を先に行ったり、 後に行ったりします。 \fB\-o\fP の場合は、 成功する可能性のあるものが、 先に評価されます。 \fB\-a\fP の場合は、 失敗する可能性のあるものが、 先に評価されます。 .\"O ---------------------------------------- .\"O .RE .RE .\"O ---------------------------------------- .\"O .IP .\"O The cost-based optimiser has a fixed idea of how likely any given test .\"O is to succeed. In some cases the probability takes account of the .\"O specific nature of the test (for example, .\"O .B \-type\ f .\"O is assumed to be more likely to succeed than .\"O .BR "\-type\ c" ). .\"O The cost-based optimiser is currently being evaluated. .\"O If it does not actually improve the performance of .\"O .BR find , .\"O it will be removed again. Conversely, optimisations that prove to be .\"O reliable, robust and effective may be enabled at lower optimisation .\"O levels over time. However, the default behaviour (i.e.\& optimisation .\"O level 1) will not be changed in the 4.3.x release series. The .\"O findutils test suite runs all the tests on .\"O .B find .\"O at each optimisation level and ensures that the result is the same. .\"O . .IP コストベースのオプティマイザーは、 対象のテストが成功するかどうかに関して、 一定の取り決めを設けています。 成功するかどうかの判断は、 テストの性質を配慮して、 状況により変化する場合があります (たとえば \fB\-type\ f\fP の場合は、 \fB\-type\ c\fP よりも、 成功する可能性が高いとみなしています)。 コストベースのオプティマイザーは現在、 評価中の段階です。 したがって、 \fBfind\fP の性能が実際に向上しなければ、 削除される予定です。 逆に、 この機能に信頼性や確実さが確認されて、 効果的であることが分かれば、 後々、 下位の最適化レベルにおいて実現するかもしれません。 ただし、 4.3.x 系のリリースにおいては、 デフォルトの動作 (最適化レベル 1) を変更する予定はありません。 findutils のテストスイートでは、 \fBfind\fP に対するテストすべてにおいて、 各最適化レベルでの処理を実施していて、 その結果が同一になることを確認しています。 . .\"O ---------------------------------------- .\"O .SH EXPRESSION .\"O The part of the command line after the list of starting points is the .\"O .IR expression . .\"O This is a kind of query specification describing how we match files .\"O and what we do with the files that were matched. .\"O An expression is composed of a sequence of things: .SH 式 コマンドライン上で、 検索開始ポイント (starting\-point) のリストの次にくるものが、式 (\fIexpression\fP) です。 式は、 検索方法を定めます。 どのファイルに一致するか、 一致したファイルをどう処理するか、 ということを表します。 式は、 以下の項目から構成されます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP Tests .\"O Tests return a true or false value, usually on the basis of some .\"O property of a file we are considering. The .\"O .B \-empty .\"O test for example is true only when the current file is empty. .IP "テスト (test)" テストは true または false を返します。 通常その値は、 処理時点での対象ファイルの所定のプロパティに基づいて決まります。 たとえば \fB\-empty\fP というテストは、 対象ファイルが空の場合に true になります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP Actions .\"O Actions have side effects (such as printing something on the standard .\"O output) and return either true or false, usually based on whether or .\"O not they are successful. The .\"O .B \-print .\"O action for example prints the name of the current file on the standard .\"O output. .IP "アクション (action)" アクションには副作用があり (たとえば、 標準出力に何かを表示するなどして)、 その上で true または false を返します。 通常その値は、 副作用による処理の成功または失敗に基づいて決まります。 たとえば \fB\-print\fP というアクションは、 対象ファイルの名前を標準出力に出力します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "Global options" .\"O Global options affect the operation of tests and actions specified on .\"O any part of the command line. Global options always return true. The .\"O .B \-depth .\"O option for example makes .\"O .B find .\"O traverse the file system in a depth-first order. .IP "グローバルオプション (global option)" グローバルオプションは、 コマンドライン上に指定されているテストやアクションすべてに影響を及ぼします。 グローバルオプションは、 必ず true を返します。 たとえば、 \fB\-depth\fP オプションを指定すると、 \fBfind\fP がファイルシステムをたどるときに、 深い方から先 (depth\-first order) に処理します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "Positional options" .\"O Positional options affect only tests or actions which follow them. .\"O Positional options always return true. The .\"O .B \-regextype .\"O option for example is positional, specifying the regular expression .\"O dialect for regular expressions occurring later on the command line. .IP "位置オプション (positional option)" 位置オプションは、 この後ろにあるテストやアクションに対してのみ影響を及ぼします。 位置オプションは、 必ず true を返します。 たとえば \fB\-regextype\fP オプションは、 その記述位置によって動作が決まります。 コマンドライン上で、 この記述以降に現れる正規表現が、 どういった方言の正規表現であるかを指定します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP Operators .\"O Operators join together the other items within the expression. They .\"O include for example .\"O .B \-o .\"O (meaning logical OR) and .\"O .B \-a .\"O (meaning logical AND). Where an operator is missing, .\"O .B \-a .\"O is assumed. .IP "オペレーター (operator)" オペレーターは、 式を構成する項目どうしを結びつけます。 オペレーターには、 \fB\-o\fP (論理 OR の意味) や \fB\-a\fP (論理 AND の意味) があります。 オペレーターがないところは、 \fB\-a\fP があるものとみなされます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .P .\"O The .\"O .B \-print .\"O action is performed on all files for which the whole expression is .\"O true, unless it contains an action other than .\"O .B \-prune .\"O or .\"O .BR \-quit . .\"O Actions which inhibit the default .\"O .B \-print .\"O are .\"O .BR \-delete , .\"O .BR \-exec , .\"O .BR \-execdir , .\"O .BR \-ok , .\"O .BR \-okdir , .\"O .BR \-fls , .\"O .BR \-fprint , .\"O .BR \-fprintf , .\"O .BR \-ls , .\"O .B \-print .\"O and .\"O .BR \-printf . .P 式がすべて true になったファイルに対して、 アクション \fB\-print\fP が実行されます。 ただしアクション \fB\-prune\fP または \fB\-quit\fP を除いた、 他のアクションがある場合は、 実行されません。 デフォルトの \fB\-print\fP の動作を発生させないアクションは、 以下のものです。 \fB\-delete\fP, \fB\-exec\fP, \fB\-execdir\fP, \fB\-ok\fP, \fB\-okdir\fP, \fB\-fls\fP, \fB\-fprint\fP, \fB\-fprintf\fP, \fB\-ls\fP, \fB\-print\fP, \fB\-printf\fP .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .\"O The .\"O .B \-delete .\"O action also acts like an option (since it implies .\"O .BR \-depth ). \fB\-delete\fP というアクションは、 オプションのようにも働きます (\fB\-depth\fP の指定を暗に含むためです)。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .SS POSITIONAL OPTIONS .\"O Positional options always return true. They affect only tests occurring .\"O later on the command line. .SS 位置オプション 位置オプションは、 常に true を返します。 位置オプションは、 この後ろにあるテストに対してのみ影響を及ぼします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-daystart .\"O Measure times (for .\"O .BR \-amin , .\"O .BR \-atime , .\"O .BR \-cmin , .\"O .BR \-ctime , .\"O .BR \-mmin , .\"O and .\"O .BR \-mtime ) .\"O from the beginning of today rather than from 24 hours ago. This .\"O option only affects tests which appear later on the command line. .IP \-daystart 時間の計測を、 24 時間前からではなく、 本日の始まりからとします (対象は \fB\-amin\fP, \fB\-atime\fP, \fB\-cmin\fP, \fB\-ctime\fP, \fB\-mmin\fP, \fB\-mtime\fP です)。 このオプションの指定が有効になるのは、 コマンドライン上でこれよりも後ろに記述されたテストに対してのみです。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-follow .\"O Deprecated; use the .\"O .B \-L .\"O option instead. Dereference symbolic links. .\"O Implies .\"O .BR \-noleaf . .\"O The .\"O .B \-follow .\"O option affects only those tests which .\"O appear after it on the command line. Unless the .\"O .B \-H .\"O or .\"O .B \-L .\"O option has .\"O been specified, the position of the .\"O .B \-follow .\"O option changes the behaviour of the .\"O .B \-newer .\"O predicate; any files listed as the argument .\"O of .\"O .B \-newer .\"O will be dereferenced if they are symbolic links. The same .\"O consideration applies to .\"O .BR \-newerXY , .\"O .B \-anewer .\"O and .\"O .BR \-cnewer . .\"O Similarly, the .\"O .B \-type .\"O predicate will always match against the type of the file .\"O that a symbolic link points to rather than the link itself. Using .\"O .B \-follow .\"O causes the .\"O .B \-lname and .\"O .B \-ilname .\"O predicates always to return false. .IP \-follow 非推奨とされています。 代わりに \fB\-L\fP オプションを使ってください。 これはシンボリックリンクをたどます。 \fB\-noleaf\fP の指定を暗に含みます。 \fB\-follow\fP オプションが影響を及ぼすのは、 コマンドライン上で、 これよりも後ろに指定されたテストに対してのみです。 \fB\-H\fP あるいは \fB\-L\fP オプションの指定がなければ、 \fB\-follow\fP オプションが記述されると、 述語表現 \fB\-newer\fP の動作は変わります。 \fB\-newer\fP の引数として指定されたファイルが、 シンボリックリンクであった場合は、 そのリンク先が参照されます。 \fB\-newerXY\fP, \fB\-anewer\fP, \fB\-cnewer\fP についても同様です。 また、 述語表現の \fB\-type\fP も、 シンボリックリンクそのものではなく、 シンボリックリンク先のファイルタイプに一致するようになります。 \fB\-follow\fP を指定すると、 述語表現 \fB\-lname\fP と \fB\-ilname\fP は、 必ず false を返します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-regextype \fItype\fR" .\"O Changes the regular expression syntax understood by .\"O .B \-regex .\"O and .\"O .B \-iregex .\"O tests which occur later on the command line. To see which regular .\"O expression types are known, use .\"O .BR "\-regextype\ help" . .\"O The Texinfo documentation (see .\"O .B SEE .\"O .BR ALSO ) .\"O explains the meaning of and .\"O differences between the various types of regular expression. .IP "\-regextype \fItype\fP" コマンドライン上で、 この後に記述されるテスト \fB\-regex\fP と \fB\-iregex\fP に対して、 解釈する正規表現文法を変更します。 正規表現の種類には何があるかについては、 \fB\-regextype\ help\fP を実行して確認してください。 Texinfo 文書 (「関連項目」参照) では、 各種正規表現の意味や違いについて説明しています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-warn, \-nowarn" .\"O Turn warning messages on or off. These warnings apply only to the .\"O command line usage, not to any conditions that .\"O .B find .\"O might encounter when it searches directories. The default behaviour .\"O corresponds to .\"O .B \-warn .\"O if standard input is a tty, and to .\"O .B \-nowarn .\"O otherwise. If a warning message relating to command-line usage is .\"O produced, the exit status of .\"O .B find .\"O is not affected. If the POSIXLY_CORRECT environment variable is set, .\"O and .\"O .B \-warn .\"O is also used, it is not specified which, if any, .\"O warnings will be active. .IP "\-warn, \-nowarn" 警告メッセージの表示、非表示を切り替えます。 この警告は、 コマンドラインの使用法に関するものだけを対象とします。 逆に \fBfind\fP のディレクトリ検索時における処理状況に関するものは、 対象としません。 デフォルトの動作は、 標準入力が tty であれば \fB\-warn\fP になり、 そうでなければ \fB\-nowarn\fP になります。 コマンドラインの使用法に関する警告メッセージが出力された場合であっても、 \fBfind\fP の終了ステータスには影響しません。 環境変数 POSIXLY_CORRECT が設定された状態で、 \fB\-warn\fP が指定されると、 警告が発生したとしても、 どの警告を出すのかは未定です。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .SS GLOBAL OPTIONS .\"O Global options always return true. .\"O Global options take effect even for tests which occur earlier on the .\"O command line. To prevent confusion, global options should specified .\"O on the command-line after the list of start points, just before the .\"O first test, positional option or action. .\"O If you specify a global option in some other place, .\"O .B find .\"O will issue a warning message explaining that this can be confusing. .SS グローバルオプション グローバルオプションは、必ず true を返します。 グローバルオプションは、 コマンドライン上で、 これよりも前にあるテストに対しても影響を及ぼします。 混乱を避けるために、 コマンドライン上でのグローバルオプションの指定は、 検索開始ポイントのリストの後ろで、 テスト、位置オプション、 アクションの直前に指定してください。 グローバルオプションを、 それとは別の場所で指定すると、 \fBfind\fP は、 混乱する可能性があることを示す警告メッセージを出力します。 .\"O ---------------------------------------- .\"O .\"O The global options occur after the list of start points, and so are .\"O not the same kind of option as .\"O .BR \-L , .\"O for example. グローバルオプションの指定位置は、 検索開始ポイントのリストより後ろです。 このため \fB\-L\fP とは異なる種類のものです。 たとえば以下のとおりです。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-d .\"O A synonym for \-depth, for compatibility with FreeBSD, NetBSD, \ .\"O MacOS X and OpenBSD. .IP \-d \-depth と同じです。 FreeBSD, NetBSD, MacOS X, OpenBSD との互換性のためにあります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-depth .\"O Process each directory's contents before the directory itself. The .\"O \-delete action also implies .\"O .BR \-depth . .IP \-depth ディレクトリそのものより前に、 ディレクトリの中を処理します。 アクション \fB\-delete\fP には \fB\-depth\fP オプションが暗に含まれています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-help, \-\-help" .\"O Print a summary of the command-line usage of .\"O .B find .\"O and exit. .IP "\-help, \-\-help" \fBfind\fP のコマンドラインの使用方法の概要を表示して終了します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-ignore_readdir_race .\"O Normally, \fBfind\fR will emit an error message when it fails to stat a file. .\"O If you give this option and a file is deleted between the time \fBfind\fR .\"O reads the name of the file from the directory and the time it tries to stat .\"O the file, no error message will be issued. .\"O This also applies to files or directories whose names are given on the .\"O command line. .\"O This option takes effect at the time the command line is read, .\"O which means that you cannot search one part of the filesystem with .\"O this option on and part of it with this option off .\"O (if you need to do that, you will need to issue two \fBfind\fR commands .\"O instead, one with the option and one without it). .IP \-ignore_readdir_race 通常 \fBfind\fP は、 ファイル情報の取得に失敗したときには、 エラーメッセージを出力します。 このオプションを指定した場合、 ディレクトリからファイル名を読み込んだときと、 ファイル情報を取得しようとしたときの間で、 ファイルが削除されてしまっていても、 エラーは表示されません。 この動作は、 コマンドライン上から指定されるファイルやディレクトリに対しても適用されます。 このオプションは、 コマンドラインから読み込みを行う段階で有効となるので、 ファイルシステムの一部に対して、 このオプションをオンとし、 残りの部分はオフとするような指定はできません。 (これを実現しなければならない場合は、 \fBfind\fP コマンドを 2 つ実行することが必要です。1 つは本オプションをオンにして、 もう 1 つはオフにして実行します。) .\"O ---------------------------------------- .\"O .\"O Furthermore, .\"O .B find .\"O with the .\"O .B \-ignore_readdir_race .\"O option will ignore errors of the .\"O .B \-delete .\"O action in the case the file has disappeared since the parent directory was read: .\"O it will not output an error diagnostic, and the return code of the .\"O .B \-delete .\"O action will be true. さらに、 \fB\-ignore_readdir_race\fP オプションを指定した \fBfind\fP の実行では、 親ディレクトリを読み込んだ後に、 対象ファイルが消失している状況が発生した場合、 \fB\-delete\fP アクションからのエラーも無視します。 その場合には、 診断エラーは出力されず、 \fB\-delete\fP アクションからの返り値も true になります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-maxdepth \fIlevels\fR" .\"O Descend at most \fIlevels\fR (a non-negative integer) levels of .\"O directories below the starting-points. Using .\"O .B \-maxdepth\ 0 .\"O means only apply the tests and actions to the starting-points themselves. .IP "\-maxdepth \fIlevels\fP" 検索開始ポイントから最大で、 \fIlevels\fP で示される階層数のディレクトリまで検索します (\fIlevels\fP は負ではない整数です)。 \fB\-maxdepth 0\fP を指定すると、 テストやアクションの対象は、 検索開始ポイントだけになります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-mindepth \fIlevels\fR" .\"O Do not apply any tests or actions at levels less than \fIlevels\fR (a .\"O non-negative integer). Using .\"O .B \-mindepth\ 1 .\"O means process all files except the starting-points. .IP "\-mindepth \fIlevels\fP" 検索開始ポイントから \fIlevels\fP で示される階層数のディレクトリに至るまでは、 テストやアクションを適用しません (\fIlevels\fP は負ではない整数です。)。 \fB\-mindepth 1\fP を指定すると、 検索開始ポイントを除いたファイルを、 すべて処理することになります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-mount .\"O Don't descend directories on other filesystems. An alternate name for .\"O .BR \-xdev , .\"O for compatibility with some other versions of .\"O .BR find . .IP \-mount ファイルシステムが異なる場合は、 ディレクトリを検索しません。 これは \fB\-xdev\fP の別名であり、 バージョンが異なる \fBfind\fP との互換性のために設けられています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-noignore_readdir_race .\"O Turns off the effect of .\"O .BR \-ignore_readdir_race . .IP \-noignore_readdir_race \fB\-ignore_readdir_race\fP の効果を無効にします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-noleaf" .\"O Do not optimize by assuming that directories contain 2 fewer .\"O subdirectories than their hard link count. This option is needed when .\"O searching filesystems that do not follow the Unix directory-link .\"O convention, such as CD-ROM or MS-DOS filesystems or AFS volume mount .\"O points. Each directory on a normal Unix filesystem has at least 2 .\"O hard links: its name and its `.\&' entry. Additionally, its .\"O subdirectories (if any) each have a `..\&' entry linked to that .\"O directory. When .\"O .B find .\"O is examining a directory, after it has statted 2 fewer subdirectories .\"O than the directory's link count, it knows that the rest of the entries .\"O in the directory are non-directories (`leaf' files in the directory .\"O tree). If only the files' names need to be examined, there is no need .\"O to stat them; this gives a significant increase in search speed. .IP \-noleaf ディレクトリに含まれるサブディレクトリ数が、 ハードリンク数よりも 2 つ少ない、 とする想定のもとでの最適化を無効にします。 このオプションが必要になるのは、 Unix のディレクトリとリンクに関する慣例に従っていないファイルシステム、 たとえば CD\-ROM、 MS\-DOS ファイルシステム、 AFS ボリュームマウントポイントを検索する場合です。 通常の Unix ファイルシステムにおいては、 各ディレクトリに最低でも 2 つのハードリンクがあります。 ディレクトリ名そのものと、 `.\&' エントリです。 そしてサブディレクトリがある場合に、 そのサブディレクトリには、 親ディレクトリにリンクする `..\&' というエントリがあります。 そこで \fBfind\fP がディレクトリを調べる際に、 ディレクトリへのリンク数よりも 2 つ分だけ少ないサブディレクトリを調べた後であれば、 ディレクトリ内の残りのエントリは、 ディレクトリではない (ディレクトリツリー内の「葉」(leaf) ファイルである) ことが決定します。 ファイル名を調べるだけで十分であれば、 ファイル情報を調べる必要がなくなるので、 これを利用すれば、 検索速度が明らかに向上します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-version, \-\-version" .\"O Print the \fBfind\fR version number and exit. .IP "\-version, \-\-version" \fBfind\fP のバージョンを表示して終了します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-xdev .\"O Don't descend directories on other filesystems. .IP \-xdev 異なるファイルシステムのディレクトリを検索しません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .SS TESTS .\"O Some tests, for example .\"O .B \-newerXY .\"O and .\"O .BR \-samefile , .\"O allow comparison between the file currently being examined and some .\"O reference file specified on the command line. When these tests are .\"O used, the interpretation of the reference file is determined by the .\"O options .\"O .BR \-H , .\"O .B \-L .\"O and .\"O .B \-P .\"O and any previous .\"O .BR \-follow , .\"O but the reference file is only examined once, at the time the command .\"O line is parsed. If the reference file cannot be examined (for .\"O example, the .\"O .BR stat (2) .\"O system call fails for it), an error message is issued, and .\"O .B find .\"O exits with a nonzero status. .SS "テスト (test)" テストの中には、 \fB\-newerXY\fP や \fB\-samefile\fP のように、 その時点で対象となっているファイルと、 コマンドラインから指定する参照ファイル (reference file) との間で、 比較を行うものがあります。 そのようなテストが指定された際に、 参照ファイルに対する解釈は、 \fB\-H\fP, \fB\-L\fP, \fB\-P\fP といったオプションや、 先行する \fB\-follow\fP の存在によって決定します。 ただし、 参照ファイルが調べられるのは、 コマンドラインが解析されるときの 1 回だけです。 参照ファイルが調べられなかった場合 (たとえば、 \fBstat\fP(2) システムコールに失敗した場合)、 エラーメッセージが出力されて、 \fBfind\fP は 0 以外のステータスを返して終了します。 .\"O ---------------------------------------- .\"O .P .\"O A numeric argument \fIn\fR can be specified to tests (like .\"O .BR \-amin , .\"O .BR \-mtime , .\"O .BR \-gid , .\"O .BR \-inum , .\"O .BR \-links , .\"O .BR \-size , .\"O .BR \-uid .\"O and .\"O .BR \-used ) .\"O as .P 数値引数である \fIn\fP は、 以下のテスト、 \fB\-amin\fP, \fB\-mtime\fP, \fB\-gid\fP, \fB\-inum\fP, \fB\-links\fP, \fB\-size\fP, \fB\-uid\fP, \fB\-used\fP において指定できます。 そして以下のような指定方法があります。 .\"O ---------------------------------------- .\"O .IP \fI+n\fP .\"O for greater than .\"O .IR n , .IP \fI+n\fP \fIn\fP より大きい。 .\"O ---------------------------------------- .\"O .IP \fI\-n\fP .\"O for less than .\"O .IR n , .IP \fI\-n\fP \fIn\fP より小さい。 .\"O ---------------------------------------- .\"O .IP \fIn\fP .\"O for exactly .\"O .IR n . .\"O . .IP \fIn\fP \fIn\fP にちょうど等しい。 . .\"O ---------------------------------------- .\"O .P .\"O Supported tests: .P サポートされているテスト: .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-amin \fIn\fR" .\"O File was last accessed less than, more than or exactly \fIn\fR minutes ago. .IP "\-amin \fIn\fP" ファイルの最終アクセス時間が、 \fIn\fP 分前と比較して、 それよりも前か後かちょうど同じかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-anewer \fIreference\fR" .\"O Time of the last access of the current file is more recent than that .\"O of the last data modification of the \fIreference\fR file. .\"O If \fIreference\fR is a symbolic link and the .\"O .B \-H .\"O option or the .\"O .B \-L .\"O option is in effect, then the time of the last data modification of the file .\"O it points to is always used. .IP "\-anewer \fIreference\fP" 現在ファイルの最終アクセス時間が、 \fIreference\fP (参照ファイル) の最終更新時間よりも、 新しいかどうかをテストします。 引数 \fIreference\fP がシンボリックリンクであり、 \fB\-H\fP や \fB\-L\fP オプションが有効になっている場合は、 リンク先ファイルの最終更新時間が常に利用されます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-atime \fIn\fR" .\"O File was last accessed less than, more than or exactly .\"O .IR n *24 .\"O hours ago. .\"O When find figures out how many 24-hour periods ago the file .\"O was last accessed, any fractional part is ignored, so to match .\"O .BR "\-atime\ +1" , .\"O a file has to have been accessed at least .\"O .I two .\"O days ago. .IP "\-atime \fIn\fP" ファイルの最終アクセス時間が、 \fIn\fP*24 時間前と比較して、 それよりも前か後かちょうど同じかをテストします。 ファイルの最終アクセス時間が、 24 時間の何倍であるかを割り算して計算する際に、 端数は無視されます。 したがって、 \fB\-atime\ +1\fP に一致するためには、 ファイルは少なくとも 2 日前にアクセスされていなければなりません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-cmin \fIn\fR" .\"O File's status was last changed less than, more than or exactly \fIn\fR minutes .\"O ago. .IP "\-cmin \fIn\fP" ファイルステータスの最終変更時間が、 \fIn\fP 分前と比較して、 それよりも前か後かちょうど同じかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-cnewer \fIreference\fR" .\"O Time of the last status change of the current file is more recent than that .\"O of the last data modification of the \fIreference\fR file. .\"O If \fIreference\fR is a symbolic link and the .\"O .B \-H .\"O option or the .\"O .B \-L .\"O option is in effect, then the time of the last data modification of the file .\"O it points to is always used. .IP "\-cnewer \fIreference\fP" 現在ファイルの最終ステータス変更時間が、 \fIreference\fP (参照ファイル) の最終更新時間よりも、 新しいかどうかをテストします。 引数 \fIreference\fP がシンボリックリンクであり、 \fB\-H\fP や \fB\-L\fP オプションが有効になっている場合は、 リンク先ファイルの最終更新時間が常に利用されます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-ctime \fIn\fR" .\"O File's status was last changed less than, more than or exactly .\"O .IR n *24 .\"O hours ago. .\"O See the comments for .\"O .B \-atime .\"O to understand how rounding affects the interpretation of file status .\"O change times. .IP "\-ctime \fIn\fP" ファイルステータスの最終変更時間が、 \fIn\fP*24 時間前と比較して、 それよりも前か後かちょうど同じかをテストします。ファイルステータスの更新時間の解釈にあたって、丸め処理がどのように影響するかについては、 \fB\-atime\fP の説明を参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-empty .\"O File is empty and is either a regular file or a directory. .IP \-empty ファイルが空であって、 通常のファイルかディレクトリであるかどうかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-executable .\"O Matches files which are executable and directories which are .\"O searchable (in a file name resolution sense) by the current user. .\"O This takes into account access control lists and other permissions .\"O artefacts which the .\"O .B \-perm .\"O test ignores. This test makes use of the .\"O .BR access (2) .\"O system call, and so can be fooled by NFS servers which do UID .\"O mapping (or root-squashing), since many systems implement .\"O .BR access (2) .\"O in the client's kernel and so cannot make use of the UID mapping .\"O information held on the server. Because this test is based only on .\"O the result of the .\"O .BR access (2) .\"O system call, there is no guarantee that a file for which this test .\"O succeeds can actually be executed. .IP \-executable 実行可能なファイルか、 あるいは、 現在のユーザーが (ファイル名解決の観点で) 検索可能なディレクトリであるかどうかをテストします。 このテストは、 アクセスコントロールリスト (access control list; ACL) や、 この他のパーミッション機能を考慮します。 ちなみに、 テスト \fB\-perm\fP では無視されます。 本テストは、 システムコール \fBaccess\fP(2) を利用するので、 NFS サーバーが UID マッピング (つまり root squash) を行っている場合に、 適切に動作しない場合があります。 多くのシステムでは、 クライアントのカーネルにおいて \fBaccess\fP(2) を実装しているため、 サーバー側にある UID マッピング情報を利用できないからです。 このテストは、 \fBaccess\fP(2) システムコールの結果だけに基づいているため、 このテストが true となったファイルが、 実際に実行できるかどうかの保証はありません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-false .\"O Always false. .IP \-false 必ず false を返します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-fstype \fItype\fR" .\"O File is on a filesystem of type .\"O .IR type . .\"O The valid filesystem types vary among different versions of Unix; .\"O an incomplete list of .\"O filesystem types that are accepted on some version of Unix or another .\"O is: ufs, 4.2, 4.3, nfs, tmp, mfs, S51K, S52K. You can use .\"O .B \-printf .\"O with the %F directive to see the types of your filesystems. .IP "\-fstype \fItype\fP" ファイルが存在するファイルシステムが、 \fItype\fP かどうかをテストします。 いろいろな Unix システムに対して、 有効なファイルシステムは変わります。 Unix などの各種システムにおいて、 許容されるファイルシステムタイプを、 その一部だけあげてみると、 ufs, 4.2, 4.3, nfs, tmp, mfs, S51K, S52K といったものです。 \fB\-printf\fP のディレクティブ %F を使えば、 現在のファイルシステムタイプを確認することができます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-gid \fIn\fR" .\"O File's numeric group ID is less than, more than or exactly .\"O .IR n . .IP "\-gid \fIn\fP" ファイルのグループ ID 番号が、 \fIn\fP と比較して、 それよりも小さいか大きいかちょうど同じかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-group \fIgname\fR" .\"O File belongs to group \fIgname\fR (numeric group ID allowed). .IP "\-group \fIgname\fP" ファイルの属するグループが \fIgname\fP かどうかをテストします (グループ ID 番号による指定も可)。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-ilname \fIpattern\fR" .\"O Like .\"O .BR \-lname , .\"O but the match is case insensitive. .\"O If the .\"O .B \-L .\"O option or the .\"O .B \-follow .\"O option is in effect, this test returns false unless the symbolic link .\"O is broken. .IP "\-ilname \fIpattern\fP" \fB\-lname\fP と同様ですが、 大文字小文字は区別しません。 \fB\-L\fP または \fB\-follow\fP オプションが有効な場合、 シンボリックリンクが切れていない限り、 このテストは false を返します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-iname \fIpattern\fR" .\"O Like .\"O .BR \-name , .\"O but the match is case insensitive. For example, the .\"O patterns `fo*' and `F??' match the file names `Foo', `FOO', `foo', .\"O `fOo', etc. .\"O The pattern `*foo*` will also match a file called '.foobar'. .IP "\-iname \fIpattern\fP" \fB\-name\fP と同様ですが、 大文字小文字は区別しません。 たとえば、 パターン `fo*' や `F??' は、 `Foo', `FOO', `foo', `fOo' などのファイル名に一致します。 また、 パターン `*foo*' は、 `.foobar' というファイルにも一致します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-inum \fIn\fR" .\"O File has inode number smaller than, greater than or exactly .\"O .IR n . .\"O It is normally easier to use the .\"O .B \-samefile .\"O test instead. .IP "\-inum \fIn\fP" ファイルの i ノード番号が、 \fIn\fP と比較して、 それよりも小さいか大きいかちょうど同じかをテストします。 普通はこれよりも、 \fB\-samefile\fP を使った方が簡単です。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-ipath \fIpattern\fR" .\"O Like .\"O .BR \-path . .\"O but the match is case insensitive. .IP "\-ipath \fIpattern\fP" \fB\-path\fP と同様です。 ただし大文字小文字を区別しません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-iregex \fIpattern\fR" .\"O Like .\"O .BR \-regex , .\"O but the match is case insensitive. .IP "\-iregex \fIpattern\fP" \fB\-regex\fP と同様です。 ただし大文字小文字を区別しません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-iwholename \fIpattern\fR" .\"O See \-ipath. This alternative is less portable than .\"O .BR \-ipath . .IP "\-iwholename \fIpattern\fP" \fB\-ipath\fP を参照してください。 この別名は、 \fB\-ipath\fP よりも移植性に劣ります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-links \fIn\fR" .\"O File has less than, more than or exactly \fIn\fR hard links. .IP "\-links \fIn\fP" ファイルが持つハードリンクの数が、 \fIn\fP と比較して、 小さいか大きいかちょうど同じかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-lname \fIpattern\fR" .\"O File is a symbolic link whose contents match shell pattern .\"O .IR pattern . .\"O The metacharacters do not treat `/' or `.\&' specially. .\"O If the .\"O .B \-L .\"O option or the .\"O .B \-follow .\"O option is in effect, this test returns false unless the symbolic link .\"O is broken. .IP "\-lname \fIpattern\fP" ファイルがシンボリックリンクであって、 その内容がシェルパターン \fIpattern\fP に一致するかどうかをテストします。 メタ文字は、 `/' や `.\&' を特別扱いしません。 \fB\-L\fP または \fB\-follow\fP オプションが有効な場合には、 シンボリックリンクが切れていない限り、 このテストは false を返します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-mmin \fIn\fR" .\"O File's data was last modified less than, more than or exactly \fIn\fR minutes .\"O ago. .IP "\-mmin \fIn\fP" ファイルの最終更新時間が、 \fIn\fP 分前と比較して、 それよりも前か後かちょうど同じかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-mtime \fIn\fR" .\"O File's data was last modified less than, more than or exactly .\"O .IR n *24 .\"O hours ago. .\"O See the comments for .\"O .B \-atime .\"O to understand how rounding affects the interpretation of file .\"O modification times. .IP "\-mtime \fIn\fP" ファイルの最終更新時間が、 \fIn\fP*24 時間前と比較して、 それよりも前か後かちょうど同じかをテストします。 何日前かを計算する際、 時間差を 24 時間で割った結果を丸めるため、 ファイル更新時間の解釈にあたって、 その処理がどのように影響するかについては、 \fB\-atime\fP の説明を参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-name \fIpattern\fR" .\"O Base of file name (the path with the leading directories removed) .\"O matches shell pattern .\"O .IR pattern . .\"O Because the leading directories are removed, .\"O the file names considered for a match with .\"O .B \-name .\"O will never include a slash, so `\-name a/b' will never match anything .\"O (you probably need to use .\"O .B \-path .\"O instead). .\"O A warning is issued if you try to do this, .\"O unless the environment variable POSIXLY_CORRECT is set. .\"O The metacharacters (`*', `?', .\"O and `[]') match a `.\&' at the start of the base name (this is a change .\"O in findutils-4.2.2; see section STANDARDS CONFORMANCE below). To ignore a .\"O directory and the files under it, use .\"O .B \-prune .\"O rather than checking every file in the tree; .\"O see an example in the description of that action. .\"O Braces are not recognised as being .\"O special, despite the fact that some shells including Bash imbue braces .\"O with a special meaning in shell patterns. The filename matching is .\"O performed with the use of the .\"O .BR fnmatch (3) .\"O library function. .\"O Don't forget to enclose the pattern in quotes in order to protect it .\"O from expansion by the shell. .IP "\-name \fIpattern\fP" ファイルのベース名 (パス名から、 先行するディレクトリを取り除いたもの) が、 シェルのパターン \fIpattern\fP に一致するかどうかをテストします。 先行するディレクトリを取り除いているので、 \fB\-name\fP を使って一致の確認を行うファイル名には、 スラッシュが含まれないものとして扱われます。 つまり `\-name a/b' としても、 一致するものはありません (その場合は、 おそらく \fB\-path\fP を用いる必要があります)。 これを行ってしまった場合、 環境変数 POSIXLY_CORRECT が設定されていない限りは、 警告メッセージが出力されます。 メタ文字 (`*', `?', `[]') は、 ベース名の先頭にある `.\&' に一致します (これは findutils\-4.2.2 から変更されました。以降のセクション「規格への準拠」を参照してください)。 1 つのディレクトリとそこに含まれるファイルを無視したい場合は、 ディレクトリツリー内の全ファイルを確認するのではなく、 \fB\-prune\fP を使います。\fB\-prune\fP の説明において、 例を説明しているので参照してください。 波カッコ ('{}') は、 特別な文字としては扱われません。 bash などのシェルにおいては、 シェルパターン内の波カッコに特別な意味を持つものがありますが、 この点は異なります。 ファイル名のマッチングは、 \fBfnmatch\fP(3) ライブラリ関数を用いて行われます。 シェルによってパターンが展開されないように、 パターンはクォートで囲むことを忘れないでください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-newer \fIreference\fR" .\"O Time of the last data modification of the current file is more recent than that .\"O of the last data modification of the \fIreference\fR file. .\"O If \fIreference\fR is a symbolic link and the .\"O .B \-H .\"O option or the .\"O .B \-L .\"O option is in effect, then the time of the last data modification of the file .\"O it points to is always used. .IP "\-newer \fIreference\fP" 対象ファイルの最終更新時間が、 \fIreference\fP ファイルの最終更新時間よりも、 最新であるかどうかをテストします。 \fIreference\fP がシンボリックリンクであって、 \fB\-H\fP または \fB\-L\fP オプションが有効である場合は、 リンク先ファイルの更新時間が用いられます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-newerXY \fIreference\fR" .\"O Succeeds if timestamp \fIX\fR of the file being considered is newer .\"O than timestamp \fIY\fR of the file .\"O .IR reference . .\"O The letters \fIX\fR and \fIY\fR can be any of the following letters: .IP "\-newerXY \fIreference\fP" 対象ファイルのタイムスタンプ \fIX\fP が、 \fIreference\fP ファイルのタイムスタンプ \fIY\fP より、 新しいかどうかをテストします。 \fIX\fP と \fIY\fP の位置に記述する文字は、 以下の文字とします。 .\"O ---------------------------------------- .\"O .\"O .TS .\"O ll .\"O ll .\"O ll .\"O ll .\"O llw(2i). .\"O a The access time of the file \fIreference\fR .\"O B The birth time of the file \fIreference\fR .\"O c The inode status change time of \fIreference\fR .\"O m The modification time of the file \fIreference\fR .\"O t \fIreference\fR is interpreted directly as a time .\"O .TE .TS ll ll ll ll llw(2i). a \fIreference\fP ファイルのアクセス時間 B \fIreference\fP ファイルの生成時間 c \fIreference\fP ファイルの i ノードステータスが変更された時間 m \fIreference\fP ファイルの内容更新時間 t \fIreference\fP に直接時間表現が書かれたとして解釈 .TE .\"O ---------------------------------------- .\"O .\"O Some combinations are invalid; for example, it is invalid for .\"O .I X .\"O to be .\"O .IR t . .\"O Some combinations are not implemented on all systems; for example .\"O .I B .\"O is not supported on all systems. If an invalid or unsupported .\"O combination of .\"O .I XY .\"O is specified, a fatal error results. Time specifications are .\"O interpreted as for the argument to the .\"O .B \-d .\"O option of GNU .\"O .BR date . .\"O If you try to use the birth time of a reference file, and the birth .\"O time cannot be determined, a fatal error message results. If you .\"O specify a test which refers to the birth time of files being examined, .\"O this test will fail for any files where the birth time is unknown. 組み合わせによっては、 無効になるものも発生します。 たとえば、 \fIX\fP に \fIt\fP を指定しても無効です。 またシステムによっては、 特定の組み合わせを実装していない場合があります。 たとえば \fIB\fP は、 すべてのシステムでサポートされているわけではありません。 指定された \fIXY\fP の組み合わせが、 無効や未サポートの場合は、 致命的エラーが発生します。 時間表現は、 GNU \fBdate\fP における \fB\-d\fP オプションに対する引数と同様のものとして解釈されます。 参照ファイルの生成時間を使用しようとて、 その生成時間が決定できなかった場合は、 致命的エラーになります。 また、 対象ファイルの生成時間を参照するテストを用いた際に、 生成時間が不明な場合は、 そのテストは失敗します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-nogroup .\"O No group corresponds to file's numeric group ID. .IP \-nogroup ファイルのグループ ID 番号が、 システムに存在していないことをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-nouser .\"O No user corresponds to file's numeric user ID. .IP \-nouser ファイルのユーザー ID 番号が、 システムに存在しないことをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-path \fIpattern\fR" .\"O File name matches shell pattern .\"O .IR pattern . .\"O The metacharacters do not treat `/' or `.\&' specially; .\"O so, for example, .\"O .in +4m .\"O .nf .\"O find . \-path \(dq./sr*sc\(dq .\"O .fi .\"O .in .\"O will print an entry for a directory called .\"O .I ./src/misc .\"O (if one exists). To ignore a whole directory tree, use .\"O .B \-prune .\"O rather than .\"O checking every file in the tree. .\"O Note that the pattern match test applies to the whole file name, .\"O starting from one of the start points named on the command line. It .\"O would only make sense to use an absolute path name here if the .\"O relevant start point is also an absolute path. This means that this .\"O command will never match anything: .\"O .br .\"O .in +4m .\"O .nf .\"O find bar \-path /foo/bar/myfile \-print .\"O .fi .\"O .in .\"O Find compares the .\"O .B \-path .\"O argument with the concatenation of a directory name and the base name .\"O of the file it's examining. Since the concatenation will never end .\"O with a slash, .\"O .B \-path .\"O arguments ending in a slash will match nothing (except perhaps a start .\"O point specified on the command line). .\"O The predicate .\"O .B \-path .\"O is also supported by HP-UX .\"O .B find .\"O and is part of the POSIX 2008 standard. .IP "\-path \fIpattern\fP" ファイル名が、 シェルのパターン \fIpattern\fP に一致するかどうかをテストします。 メタ文字は、 `/' や `.\&' を特別扱いしません。 したがってたとえば、 .in +4m .nf find . \-path "./sr*sc" .fi .in は、 \fI./src/misc\fP というディレクトリ (それが存在している場合) の内容を表示します。 ディレクトリツリー全体を対象としないのであれば、 ツリー内の各ファイルを確認していくのではなく、 \fB\-prune\fP を用います。 パターン一致を確認するようなテストは、 ファイル名すべてに対して適用されます。 つまりそのファイル名は、 コマンドライン上から指定された検索開始点から始まる、 検索対象すべてです。 このパターンにおいて、 絶対パスを指定するなら、 検索開始点も絶対パスでなければ意味がありません。 つまり以下のようなコマンドでは、 どのファイルも一致しません。 .br .in +4m .nf find bar \-path /foo/bar/myfile \-print .fi .in \fBfind\fP が \fB\-path\fP の引数と比較するのは、 その時点で対象としているファイルのディレクトリとベース名を連結した文字列です。 その文字列の末尾がスラッシュになることはないため、 \fB\-path\fP の引数の末尾にスラッシュを指定すると、 何にも一致しないことになります。 (ただし、 コマンドラインで指定された検索開始ポイントには、 おそらく一致します)。 述語表現 \fB\-path\fP は、 HP\-UX の \fBfind\fP でもサポートされていて、 POSIX 2008 規格に存在します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-perm \fImode\fR" .\"O File's permission bits are exactly \fImode\fR (octal or symbolic). .\"O Since an exact match is required, if you want to use this form for .\"O symbolic modes, you may have to specify a rather complex mode string. .\"O For example `\-perm g=w' will only match files which have mode 0020 .\"O (that is, ones for which group write permission is the only permission .\"O set). It is more likely that you will want to use the `/' or `\-' .\"O forms, for example `\-perm \-g=w', which matches any file with group .\"O write permission. See the .\"O .B EXAMPLES .\"O section for some illustrative examples. .IP "\-perm \fImode\fP" ファイルの許可属性が \fImode\fP (8 進数表現またはシンボル表現) に一致するかどうかをテストします。 \fImode\fP 指定のこの形式では、 完全一致が求められるので、 この形式をシンボリックモードで使う場合には、 モード文字列の指定が多少複雑になるかもしれません。 たとえば `\-perm g=w' は、 許可属性が 0020 のファイルにのみ一致します (つまり、 グループの書き込み権限のみを設定します)。 おそらく、 `/' や `\-' を用いる形式を必要とすることがあります。 たとえば、 `\-perm \-g=w' とすれば、 グループの書き込み許可があるファイルに一致します。 具体例については「例」セクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-perm \-\fImode\fR" .\"O All of the permission bits \fImode\fR are set for the file. .\"O Symbolic modes are accepted in this form, and this is usually the way .\"O in which you would want to use them. You must specify `u', `g' or `o' if .\"O you use a symbolic mode. .\"O See the .\"O .B EXAMPLES .\"O section for some illustrative examples. .IP "\-perm \-\fImode\fP" \fImode\fP で指定した許可属性ビットすべてが、 対象ファイルのものに一致するかどうかをテストします。 この形式でも、 シンボリックモード指定が可能です。 このモードは、 ごく普通に用いたくなるはずです。 シンボリックモードでは、 `u'、 `g'、 `o' を用いる必要があります。 具体例については「例」セクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-perm /\fImode\fR" .\"O Any of the permission bits \fImode\fR are set for the file. Symbolic .\"O modes are accepted in this form. You must specify `u', `g' or `o' if .\"O you use a symbolic mode. See the .\"O .B EXAMPLES .\"O section for some illustrative examples. If no permission bits in .\"O .I mode .\"O are set, this test matches any file (the idea here is to be consistent .\"O with the behaviour of .\"O .BR "\-perm\ \-000" ). .IP "\-perm /\fImode\fP" \fImode\fP で指定した許可属性ビットの一部が、 対象ファイルのものに一致するかどうかをテストします。 この形式でも、 シンボリックモード指定が可能です。 シンボリックモードでは、 `u'、 `g'、 `o' を用いる必要があります。 具体例については「例」セクションを参照してください。 なお、 \fImode\fP の許可属性ビットが何も設定されていない場合、 このテストは、 どんなファイルにも一致します (この動作は、 \fB\-perm\ \-000\fP と一貫性を持たせるためです)。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-perm +\fImode\fR" .\"O This is no longer supported (and has been deprecated since 2005). Use .\"O .B "\-perm /\fImode\fR" .\"O instead. .IP "\-perm +\fImode\fP" この書式は、 もうサポートされていません (2005 年以来、 非推奨となっています)。 代わりに \fB\-perm /\fP\fImode\fP を用いてください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-readable .\"O Matches files which are readable by the current user. This takes into .\"O account access control lists and other permissions artefacts which the .\"O .B \-perm .\"O test ignores. This test makes use of the .\"O .BR access (2) .\"O system call, and so can be fooled by NFS servers which do UID .\"O mapping (or root-squashing), since many systems implement .\"O .BR access (2) .\"O in the client's kernel and so cannot make use of the UID mapping .\"O information held on the server. .IP \-readable 現在のユーザーによって読み込み可能なファイルであるかどうかをテストします。 このテストは、 アクセスコントロールリスト (access control list; ACL) や、 その他のパーミッション機能を考慮します。 ちなみに、 テスト \fB\-perm\fP では無視されます。 本テストは、 システムコール \fBaccess\fP(2) を利用するので、 NFS サーバーが UID マッピング (つまり root squash) を行っている場合に、 適切に動作しない場合があります。 多くのシステムでは、 クライアントのカーネルにおいて \fBaccess\fP(2) を実装しているため、 サーバー側にある UID マッピング情報を利用できないからです。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-regex \fIpattern\fR" .\"O File name matches regular expression .\"O .IR pattern . .\"O This is a match on the whole path, not a search. .\"O For example, to match a file named .\"O .IR ./fubar3, .\"O you can use the regular expression `.*bar.\&' or `.*b.*3', .\"O but not `f.*r3'. .\"O The regular expressions understood by .\"O .B find .\"O are by default Emacs Regular Expressions (except that `.' matches .\"O newline), but this can be changed with the .\"O .B \-regextype .\"O option. .IP "\-regex \fIpattern\fP" ファイル名が正規表現 \fIpattern\fP に一致するかどうかをテストします。 この処理は、 パス全体への一致を確認するものであって、 ファイル検索ではありません。 したがってたとえば、 `./fubar3' ファイルに一致する正規表現として、 `.*bar.' や `.*b.*3' は利用できますが、 `f.*r3' は利用できません。 \fBfind\fP が扱う正規表現のデフォルトは、 Emacs 正規表現です ('.' が改行に一致する点は除きます)。 これは、 \fB\-regextype\fP オプションを用いて変更することができます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-samefile \fIname\fR" .\"O File refers to the same inode as .\"O .IR name . .\"O When .\"O .B \-L .\"O is in effect, this can include symbolic links. .IP "\-samefile \fIname\fP" 対象ファイルが、 \fIname\fP と同じ i ノードを参照しているかどうかをテストします。 \fB\-L\fP が有効であれば、 シンボリックリンクを対象とすることができます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-size \fIn\fR[cwbkMG]" .\"O File uses less than, more than or exactly \fIn\fP units of space, rounding up. .\"O The following suffixes can be used: .IP "\-size \fIn\fP[cwbkMG]" ファイルが \fIn\fP 単位分の容量と比較して、 それよりも小さいか大きいかちょうど同じかをテストします。 ここでは丸め処理が行われます。 以下のサフィックスが利用できます。 .\"O ---------------------------------------- .\"O .RS .RS .\"O ---------------------------------------- .\"O .IP `b' .\"O for 512-byte blocks (this is the default if no suffix is used) .IP `b' 512 バイトブロックを表します (サフィックスの指定がない場合は、 これがデフォルトとなります)。 .\"O ---------------------------------------- .\"O .IP `c' .\"O for bytes .IP `c' バイトを表します。 .\"O ---------------------------------------- .\"O .IP `w' .\"O for two-byte words .IP `w' 2 バイトワードを表します。 .\"O ---------------------------------------- .\"O .IP `k' .\"O for kibibytes (KiB, units of 1024 bytes) .IP `k キビバイトを表します (kibibyte, KiB, 1024 バイト単位)。 .\"O ---------------------------------------- .\"O .IP `M' .\"O for mebibytes (MiB, units of 1024 * 1024 = 1\|048\|576 bytes) .IP `M' メビバイトを表します (mebibyte, MiB, 1024 * 1024 単位 = 1\|048\|576 バイト)。 .\"O ---------------------------------------- .\"O .IP `G' .\"O for gibibytes (GiB, units of 1024 * 1024 * 1024 = 1\|073\|741\|824 bytes) .IP `G' ギビバイトを表します (gibibyte, GiB, 1024 * 1024 * 1024 単位 = 1\|073\|741\|8241073741824)。 .\"O ---------------------------------------- .\"O .RE .RE .\"O ---------------------------------------- .\"O .IP .\"O The size is simply the st_size member of the struct stat populated by .\"O the lstat (or stat) system call, rounded up as shown above. .\"O In other words, it's consistent with the result you get for .\"O .BR "ls\ \-l" . .\"O Bear in .\"O mind that the `%k' and `%b' format specifiers of .\"O .B \-printf .\"O handle sparse files .\"O differently. The `b' suffix always denotes 512-byte blocks and never .\"O 1024-byte blocks, which is different to the behaviour of .\"O .BR \-ls . .IP サイズというのは単純に、 システムコールの lstat (あるいは stat) に含まれている struct stat の メンバー st_size のことであり、 上に示すようにして切り上げられます。言い換えると、 その結果は \fBls\ \-l\fP で得られるものと一致します。\fB\-printf\fP における `%k' と `%b' の書式指定子は、 スパースファイルに対して、 異なる扱いをする点に注意してください。 サフィックス `b' は、 常に 512 バイトブロックを表していて、 1024 バイトブロックを表すことはありません。 この点は、 \fB\-ls\fP の動作とは異なるところです。 .\"O ---------------------------------------- .\"O .IP .\"O The + and - prefixes signify greater than and less than, as usual; .\"O i.e., an exact size of \fIn\fR units does not match. .\"O Bear in mind that the size is rounded up to the next unit. .\"O Therefore .\"O .B \-size\ \-1M .\"O is not equivalent to .\"O .BR "\-size\ \-1\|048\|576c" . .\"O The former only matches empty files, the latter matches files from 0 to .\"O 1,048,575 bytes. .IP プレフィックスの + と \- は、 ごく普通に、 それより上、 それより下、 を表します。 したがって、 \fIn\fP とちょうど同じ数には一致しません。 サイズとは、 次の数単位に向けて切り上げられることに注意してください。 つまり \fB\-size\ \-1M\fP というのは、 \fB\-size\ \-1\|048\|576c\fP と同じではありません。 前者は、 空のファイルにしか一致しません。 また後者は、 バイトサイズが 0 から 1,048,575 までのファイルに一致します。 .\"O ---------------------------------------- .\"O .IP \-true .\"O Always true. .IP \-true 常に true です。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-type \fIc\fR" .\"O File is of type .\"O .IR c : .IP "\-type \fIc\fP" ファイルタイプが \fIc\fP であるかどうかをテストします。 .\"O ---------------------------------------- .\"O .RS .RS .\"O ---------------------------------------- .\"O .IP b .\"O block (buffered) special .IP b ブロックスペシャルファイル (バッファーあり) .\"O ---------------------------------------- .\"O .IP c .\"O character (unbuffered) special .IP c キャラクタースペシャルファイル (バッファーなし) .\"O ---------------------------------------- .\"O .IP d .\"O directory .IP d ディレクトリ .\"O ---------------------------------------- .\"O .IP p .\"O named pipe (FIFO) .IP p 名前付きパイプ (FIFO) .\"O ---------------------------------------- .\"O .IP f .\"O regular file .IP f 通常のファイル .\"O ---------------------------------------- .\"O .IP l .\"O symbolic link; this is never true if the .\"O .B \-L .\"O option or the .\"O .B \-follow .\"O option is in effect, unless the symbolic link is broken. If you want .\"O to search for symbolic links when .\"O .B \-L .\"O is in effect, use .\"O .BR \-xtype . .IP l シンボリックリンク。 オプション \fB\-L\fP や \fB\-follow\fP が有効な場合、 シンボリックリンク切れの場合を除いて、 このテストが true になることはありません。 \fB\-L\fP が有効なときに、 シンボリックリンクを検索するには、 \fB\-xtype\fP を用いてください。 .\"O ---------------------------------------- .\"O .IP s .\"O socket .IP s ソケット .\"O ---------------------------------------- .\"O .IP D .\"O door (Solaris) .IP D ドア (door) (Solaris の場合) .\"O ---------------------------------------- .\"O .RE .RE .\"O ---------------------------------------- .\"O .IP .\"O To search for more than one type at once, you can supply the combined list of .\"O type letters separated by a comma `,' (GNU extension). .IP 一度に複数のファイルタイプを検索したい場合は、 タイプを表す英字を、 カンマ `,' で区切ったリストで指定します。 (GNU 拡張) .\"O ---------------------------------------- .\"O .IP "\-uid \fIn\fR" .\"O File's numeric user ID is less than, more than or exactly .\"O .IR n . .IP "\-uid \fIn\fP" ファイル所有者のユーザー ID 番号が、 \fIn\fP と比較して、 それよりも小さいか大きいかちょうど同じかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-used \fIn\fR" .\"O File was last accessed less than, more than or exactly \fIn\fR days after its .\"O status was last changed. .IP "\-used \fIn\fP" ファイルのステータスが変更されてから、 ファイルにアクセスした最終時間が、 \fIn\fP 日間と比較して、 小さいか大きいかちょうど同じかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-user \fIuname\fR" .\"O File is owned by user \fIuname\fR (numeric user ID allowed). .IP "\-user \fIuname\fP" ファイルの所有者が、 \fIuname\fP というユーザーであるかどうかをテストします (ユーザー ID 番号による指定も可)。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-wholename \fIpattern\fR" .\"O See \-path. This alternative is less portable than .\"O .BR \-path . .IP "\-wholename \fIpattern\fP" \fB\-path\fP を参照してください。 この別名は、 \fB\-path\fP よりも移植性に劣ります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-writable" .\"O Matches files which are writable by the current user. This takes into .\"O account access control lists and other permissions artefacts which the .\"O .B \-perm .\"O test ignores. This test makes use of the .\"O .BR access (2) .\"O system call, and so can be fooled by NFS servers which do UID .\"O mapping (or root-squashing), since many systems implement .\"O .BR access (2) .\"O in the client's kernel and so cannot make use of the UID mapping .\"O information held on the server. .IP \-writable 現在のユーザーによって書き込み可能なファイルであるかどうかをテストします。 このテストは、 アクセスコントロールリスト (access control list; ACL) や、 その他のパーミッション機能を考慮します。 ちなみに、 テスト \fB\-perm\fP では無視されます。 本テストは、 システムコール \fBaccess\fP(2) を利用するので、 NFS サーバーが UID マッピング (つまり root squash) を行っている場合に、 適切に動作しない場合があります。 多くのシステムでは、 クライアントのカーネルにおいて \fBaccess\fP(2) を実装しているため、 サーバー側にある UID マッピング情報を利用できないからです。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-xtype \fIc\fR" .\"O The same as .\"O .B \-type .\"O unless the file is a symbolic link. For symbolic .\"O links: if the .\"O .B \-H .\"O or .\"O .B \-P .\"O option was specified, true if the file is a .\"O link to a file of type .\"O .IR c ; .\"O if the .\"O .B \-L .\"O option has been given, true .\"O if \fIc\fR is `l'. In other words, for symbolic links, .\"O .B \-xtype .\"O checks the type of the file that .\"O .B \-type .\"O does not check. .IP "\-xtype \fIc\fP" 対象ファイルがシンボリックリンクでなければ、 \fB\-type\fP と同様です。 シンボリックリンクのときは、 以下のように動作します。 \fB\-H\fP や \fB\-P\fP オプションの指定時は、 リンク先がタイプ \fIc\fP のファイルであれば、 true を返します。 \fB\-L\fP オプションの指定時は、 \fIc\fP が `l' ならば true を返します。 言い換えると、 シンボリックリンクに対して、 \fB\-xtype\fP は、 \fB\-type\fP がチェックしないファイルタイプをチェックします。 .\"O ---------------------------------------- .\"O .IP "\-context \fIpattern\fR" .\"O (SELinux only) Security context of the file matches glob .\"O .IR pattern . .IP "\-context \fIpattern\fP" (SELinux 有効時のみ) 対象ファイルのセキュリティコンテキストが glob パターン \fIpattern\fP に一致するかどうかをテストします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .SS ACTIONS .SS アクション .\"O ---------------------------------------- .\"O .IP "\-delete\fR" .\"O Delete files; true if removal succeeded. If the removal failed, an .\"O error message is issued. .\"O If .\"O .B \-delete .\"O fails, .\"O .BR find 's .\"O exit status will be nonzero .\"O (when it eventually exits). .\"O Use of .\"O .B \-delete .\"O automatically turns on the .\"O .RB ` \-depth ' .\"O option. .IP \-delete ファイルを削除します。 削除に成功すると、 true を返します。 削除に失敗した場合は、 エラーメッセージを表示します。 \fB\-delete\fP が失敗した場合、 \fBfind\fP の終了ステータスは、 ゼロ以外になります (最終終了するときです)。 \fB\-delete\fP 利用時は、 自動的に `\fB\-depth\fP' オプションが有効になります。 .\"O ---------------------------------------- .\"O .\"O .BR Warnings : .\"O Don't forget that the find command line is .\"O evaluated as an expression, so putting .\"O .B \-delete .\"O first will make .\"O .B find .\"O try to delete everything below the starting points you specified. .\"O When testing a .\"O .B find .\"O command line that you later intend to use with .\"O .BR \-delete , .\"O you should explicitly specify .\"O .B \-depth .\"O in order to avoid later surprises. Because .\"O .B \-delete .\"O implies .\"O .BR \-depth , .\"O you cannot usefully use .\"O .B \-prune .\"O and .\"O .B \-delete .\"O together. \fB警告\fP: find のコマンドラインは、 一つの式として評価される点を忘れないでください。 したがって一番初めに \fB\-delete\fP を指定してしまうと、 \fBfind\fP は、 指定された検索開始ポイント以下を、 すべて削除します。 後々 \fB\-delete\fP を付けた処理を行うつもりで、 \fBfind\fP の事前確認を行うのであれば、 明示的に \fB\-depth\fP を指定するようにしてください。 そうすれば、 不測の事態を避けることができます。 \fB\-delete\fP には、 暗に \fB\-depth\fP の指定が含まれるため、 \fB\-prune\fP と \fB\-delete\fP をともに指定することは、 意味がありません。 .\"O ---------------------------------------- .\"O .\"O Together with the .\"O .B \-ignore_readdir_race .\"O option, .\"O .B find .\"O will ignore errors of the .\"O .B \-delete .\"O action in the case the file has disappeared since the parent directory was .\"O read: it will not output an error diagnostic, and the return code of the .\"O .B \-delete .\"O action will be true. \fB\-ignore_readdir_race\fP オプションとともに、 このオプションを指定し、 さらに、 親ディレクトリを読み込んだ後に、 対象ファイルが消失している状況が発生した場合、 \fB\-delete\fP アクションからのエラーは無視されます。 その場合には、 診断エラーは出力されず、 \fB\-delete\fP アクションからの返り値も true になります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-exec \fIcommand\fR ;" .\"O Execute .\"O .IR command ; .\"O true if 0 status is returned. All following .\"O arguments to .\"O .B find .\"O are taken to be arguments to the command until an argument consisting .\"O of `;' is encountered. The string `{}' is replaced by the current .\"O file name being processed everywhere it occurs in the arguments to the .\"O command, not just in arguments where it is alone, as in some versions .\"O of .\"O .BR find . .\"O Both of these constructions might need to be escaped (with a `\e') or .\"O quoted to protect them from expansion by the shell. See the .\"O .B EXAMPLES .\"O section for examples of the use of the .\"O .B \-exec .\"O option. The specified .\"O command is run once for each matched file. .\"O The command is executed in the starting directory. .\"O There are unavoidable security problems surrounding use of the .\"O .B \-exec .\"O action; .\"O you should use the .\"O .B \-execdir .\"O option instead. .IP "\-exec \fIcommand\fP ;" \fIcommand\fP を実行します。 \fIcommand\fP の返り値が 0 なら、 true を返します。 \fBfind\fP のコマンドラインで、 これ以降に指定されている引数は、 `;' という引数が現れるまで、 すべてそのコマンドに対する引数とみなされます。 文字列 `{}' は、 コマンド引数内に現れるすべての箇所で、 対象ファイル名に置き換えられます。 \fBfind\fP の他の実装においては、 引数の中で `{}' が単独で用いられていないと、 対象ファイル名に置き換えられないものがあります。 文字列 `{}' は、 シェルによって展開されないように、 どちらも `\e' でエスケープするか、 クォートで囲む必要があります。 アクション \fB\-exec\fP の具体例については、 「例」セクションを参照してください。 指定されたコマンドは、 一致したファイルごとに一回ずつ実行されます。 そのコマンドは、 \fBfind\fP を実行したディレクトリにおいて実行されます。 そこで、 \fB\-exec\fP アクションの実行にあたっては、 セキュリティの問題が避けられません。 したがって、 \fB\-exec\fP の代わりに、 \fB\-execdir\fP アクションを使用してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-exec \fIcommand\fR {} +" .\"O This variant of the .\"O .B \-exec .\"O action runs the specified command on the .\"O selected files, but the command line is built by appending each .\"O selected file name at the end; the total number of invocations of the .\"O command will be much less than the number of matched files. The .\"O command line is built in much the same way that .\"O .B xargs .\"O builds its command lines. Only one instance of `{}' is allowed within .\"O the command, and it must appear at the end, immediately before the `+'; .\"O it needs to be escaped (with a `\e') or quoted to protect it from .\"O interpretation by the shell. .\"O The command is executed in the starting directory. If any invocation .\"O with the `+' form returns a non-zero value as exit status, then .\"O .B find .\"O returns a non-zero exit status. If .\"O .B find .\"O encounters an error, this can sometimes cause an .\"O immediate exit, so some pending commands may not be run .\"O at all. For this reason .\"O .B \-exec\ \fImy-command\fP\ ...\ {}\ +\ \-quit .\"O may not result in .\"O .I my-command .\"O actually being run. This variant of .\"O .B \-exec .\"O always returns true. .IP "\-exec \fIcommand\fP {} +" この形式の \fB\-exec\fP アクションは、 対象ファイルに対して、 指定されたコマンド (\fIcommand\fP) を実行します。 各対象ファイルは、 コマンドラインの末尾に追加されながら、 コマンドラインが構成されるので、 指定コマンドの呼び出し回数は、 対象ファイル数よりも大幅に少なくて済みます。 コマンドラインが構成される処理方法は、 \fBxargs\fP の場合とほぼ同じです。 `{}' の記述は、 コマンドライン中に 1 度しか用いることはできず、 しかも最後に `+' を伴って、 コマンドラインの最終記述としなければなりません。 また、 シェルによって誤った解釈が行われないように、 (`\e' を使って) エスケープするか、 全体をクォートで囲むことが必要です。 そのコマンドは、 \fBfind\fP を実行したディレクトリにおいて実行されます。 '+' 形式を使った呼び出しにおいて、 終了ステータスにゼロでない値が返ってきたら、 \fBfind\fP も、 終了ステータスにゼロ以外を返します。 \fBfind\fP においてエラーが発生すると、 その場ですぐに終了する場合があります。 その際には、 残りのコマンドがまったく実行されないこともあります。 このため、 \fB\-exec\ \fP\fImy\-command\fP\fB\ ...\ {}\ +\ \-quit\fP では、 \fImy\-command\fP が実際には実行されない場合があります。 なおこの \fB\-exec\fP の形式は、 必ず true を返します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-execdir \fIcommand\fR ;" .IP "\-execdir \fIcommand\fP ;" .\"O ---------------------------------------- .\"O .IP "\-execdir \fIcommand\fR {} +" .\"O Like .\"O .BR \-exec , .\"O but the specified command is run from the subdirectory .\"O containing the matched file, which is not normally the directory in .\"O which you started .\"O .BR find . .\"O As with \-exec, the {} should be quoted if find is being invoked from .\"O a shell. .\"O This a much more secure method for invoking commands, as it avoids .\"O race conditions during resolution of the paths to the matched files. .\"O As with the .\"O .B \-exec .\"O action, the `+' form of .\"O .B \-execdir .\"O will build a .\"O command line to process more than one matched file, but any given .\"O invocation of .\"O .I command .\"O will only list files that exist in the same subdirectory. If you use .\"O this option, you must ensure that your .\"O .B $PATH .\"O environment variable does not reference `.'; .\"O otherwise, an attacker can run any commands they like by leaving an .\"O appropriately-named file in a directory in which you will run .\"O .BR \-execdir . .\"O The same applies to having entries in .\"O .B $PATH .\"O which are empty or which are not absolute directory names. If .\"O any invocation with the `+' form returns a non-zero value as exit status, .\"O then .\"O .B find .\"O returns a non-zero exit status. If .\"O .B find .\"O encounters an error, this can sometimes cause an .\"O immediate exit, so some pending commands may not be run .\"O at all. .\"O The result of the action depends on whether the .\"O .B + .\"O or the .\"O .B ; .\"O variant is being used; .\"O .B \-execdir\ \fIcommand\fP\ {}\ + .\"O always returns true, while .\"O .B \-execdir\ \fIcommand\fP\ {}\ ; .\"O returns true only if .\"O .I command .\"O returns 0. .IP "\-execdir \fIcommand\fP {} +" \fB\-exec\fP と同様ですが、 指定したコマンドは、 一致したファイルが存在するサブディレクトリ内で実行されます。 このサブディレクトリは、 普通は \fBfind\fP を実行したディレクトリとは異なるはずです。 \fB\-exec\fP と同じように、 find をシェルから呼び出す場合には {} をクォートでくくる必要があります。 この形式は、 コマンドを呼び出す方法として、 非常に安全なものです。 一致したファイルのパスを確定させる際に、 競合状態を避けることができるためです。 \fB\-exec\fP アクションの場合と同様、 \fB\-execdir\fP の `+' 形式の実行においても、 一致した複数ファイルを処理するようなコマンドラインが構成されます。 ただし、 指定された \fIcommand\fP の呼び出しは、 どの場合であっても、 必ず同一サブディレクトリ内にあるファイルだけを対象にして実行されます。 このオプションの利用にあたっては、 環境変数 \fB$PATH\fP が、 `.' を参照していないようにする必要があります。 そうしていないと、 攻撃者が、 \fB\-execdir\fP を実行するディレクトリ内に、 いかにも正しいファイルを置くだけで、 任意のコマンド実行を許してしまうことになります。 \fB$PATH\fP 内のエントリに、 空のものや、 相対パスのディレクトリ名を含んでいる場合にも、 同じことが言えます。 '+' 形式を使った呼び出しにおいて、 終了ステータスにゼロでない値が返ってきたら、 \fBfind\fP も、 終了ステータスにゼロ以外を返します。 \fBfind\fP においてエラーが発生すると、 その場ですぐに終了する場合があります。 その際には、 残りのコマンドがまったく実行されないこともあります。 このアクションが返す値は、 \fB+\fP と \fB;\fP のどちらの形式を使うかによって異なります。 \fB\-execdir\ \fP\fIcommand\fP\fB\ {}\ +\fP は必ず true を返しますが、 \fB\-execdir\ \fP\fIcommand\fP\fB\ {}\ ;\fP は、 \fIcommand\fP が 0 を返したときだけ、 true を返します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-fls \fIfile\fR" .\"O True; like .\"O .B \-ls .\"O but write to \fIfile\fR like .\"O .BR \-fprint . .\"O The output file is always created, even if the predicate is never .\"O matched. .\"O See the .\"O .B UNUSUAL FILENAMES .\"O section for information about how unusual characters in filenames are handled. .IP "\-fls \fIfile\fP" true を返します。 \fB\-ls\fP と同様ですが、 \fB\-fprint\fP のように、 \fIfile\fP への出力を行います。 出力ファイルは、 この述語表現に一致するものがなくても、 必ず生成されます。 ファイル名に、 普通は使わない文字が含まれている場合の扱いについては、 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-fprint \fIfile\fR" .\"O True; print the full file name into file .\"O .IR file . .\"O If \fIfile\fR .\"O does not exist when \fBfind\fR is run, it is created; if it does .\"O exist, it is truncated. The file names .\"O .I /dev/stdout .\"O and .\"O .I /dev/stderr .\"O are handled specially; they refer to the standard .\"O output and standard error output, respectively. .\"O The output file is always created, even if the predicate is never matched. .\"O See the .\"O .B UNUSUAL FILENAMES .\"O section for information about how unusual characters in filenames are handled. .IP "\-fprint \fIfile\fP" true を返します。 パス付きのファイル名を、 ファイル \fIfile\fP に出力します。 \fBfind\fP の実行時に、 \fIfile\fP が存在しなければ、 新たに生成されます。 すでに存在していたら、 元の中身は失われます。 ファイル名 \fI/dev/stdout\fP と \fI/dev/stderr\fP は特別に扱われます。 それぞれ、 標準出力、 標準エラー出力を意味します。 出力ファイルは、 この述語表現に一致するものがなくても、 必ず生成されます。 ファイル名に、 普通は使わない文字が含まれている場合の扱いについては、 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-fprint0 \fIfile\fR" .\"O True; like .\"O .B \-print0 .\"O but write to \fIfile\fR like .\"O .BR \-fprint . .\"O The output file is always created, even if the predicate is never matched. .\"O See the .\"O .B UNUSUAL FILENAMES .\"O section for information about how unusual characters in filenames are handled. .IP "\-fprint0 \fIfile\fP" true を返します。 \fB\-print0\fP と同様ですが、 \fB\-fprint\fP のように、 \fIfile\fP への出力を行います。 出力ファイルは、 この述語表現に一致するものがなくても、 必ず生成されます。 ファイル名に、 普通は使わない文字が含まれている場合の扱いについては、 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-fprintf \fIfile\fR \fIformat\fR" .\"O True; like .\"O .B \-printf .\"O but write to \fIfile\fR like .\"O .BR \-fprint . .\"O The output file is always created, even if the predicate is never matched. .\"O See the .\"O .B UNUSUAL FILENAMES .\"O section for information about how unusual characters in filenames are handled. .IP "\-fprintf \fIfile\fP \fIformat\fP" true を返します。 \fB\-printf\fP と同様ですが、 \fB\-fprint\fP のように、 \fIfile\fP への出力を行います。 出力ファイルは、 この述語表現に一致するものがなくても、 必ず生成されます。 ファイル名に、 普通は使わない文字が含まれている場合の扱いについては、 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-ls .\"O True; list current file in .\"O .B ls \-dils .\"O format on standard output. .\"O The block counts are of 1\ KB blocks, unless the environment variable .\"O POSIXLY_CORRECT is set, in which case 512-byte blocks are used. .\"O See the .\"O .B UNUSUAL FILENAMES .\"O section for information about how unusual characters in filenames are handled. .IP \-ls true を返します。 対象ファイルを、 \fBls \-dils\fP の書式で標準出力に出力します。 ブロック数は、 1 ブロックに 1\ KB バイトです。 ただし、 環境変数 POSIXLY_CORRECT が設定されている場合は、 1 ブロック 512 バイトが使用されます。 ファイル名に、 普通は使わない文字が含まれている場合の扱いについては、 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-ok \fIcommand\fR ;" .\"O Like .\"O .B \-exec .\"O but ask the user first. If the user agrees, run the command. Otherwise .\"O just return false. If the command is run, its standard input is redirected .\"O from .\"O .IR /dev/null . .IP "\-ok \fIcommand\fP ;" \fB\-exec\fP と同様ですが、 ユーザーへの問い合わせを行います。 ユーザーが同意すれば、 コマンドを実行します。 同意しなければ、 何もせずに false を返します。 コマンドが実行される際に、 標準入力はリダイレクトされて、 \fI/dev/null\fP になります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP .\"O The response to the prompt is matched against a pair of regular .\"O expressions to determine if it is an affirmative or negative .\"O response. This regular expression is obtained from the system if the .\"O `POSIXLY_CORRECT' environment variable is set, or otherwise from .\"O .BR find 's .\"O message translations. If the system has no suitable .\"O definition, .\"O .BR find 's .\"O own definition will be used. .\"O In either case, the interpretation of the regular expression itself .\"O will be affected by the environment variables 'LC_CTYPE' .\"O (character classes) and 'LC_COLLATE' (character ranges and equivalence .\"O classes). .IP プロンプトに対するユーザーの入力は、 肯定、 否定を表す一組の正規表現との一致確認が行われて、 同意したかどうかが決定します。 この正規表現は、 環境変数 `POSIXLY_CORRECT' が設定されていれば、 システムから取得されます。 環境変数が設定されていなければ、 \fBfind\fP が持つメッセージ翻訳から取得されます。 システムに適切な定義が存在しなかった場合は、 \fBfind\fP 自体が持つ定義が使用されます。 どの場合でも、 正規表現そのものの解釈は、 環境変数 'LC_CTYPE' (文字クラス) や 'LC_COLLATE' (文字の範囲や等価クラス) の影響を受けます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-okdir \fIcommand\fR ;" .\"O Like .\"O .B \-execdir .\"O but ask the user first in the same way as for .\"O .BR \-ok . .\"O If the user does not agree, just return false. .\"O If the command is run, its standard input is redirected from .\"O .IR /dev/null . .IP "\-okdir \fIcommand\fP ;" \fB\-execdir\fP と同様ですが、 \fB\-ok\fP と同じように、 ユーザーへの問い合わせを行ないます。 ユーザーが同意しなければ、 何もせずに false を返します。 コマンドが実行される際に、 標準入力はリダイレクトされて、 \fI/dev/null\fP になります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-print .\"O True; print the full file name on the standard output, followed by a .\"O newline. .\"O If you are piping the output of .\"O .B find .\"O into another program and there is the faintest possibility that the files .\"O which you are searching for might contain a newline, then you should .\"O seriously consider using the .\"O .B \-print0 .\"O option instead of .\"O .BR \-print . .\"O See the .\"O .B UNUSUAL FILENAMES .\"O section for information about how unusual characters in filenames are handled. .IP \-print true を返します。 パス付きのファイル名と、 最後に改行文字をつけて、 標準出力に出力します。 \fBfind\fP の出力を、 パイプを使って他のプログラムに受け渡している場合、 対象ファイル名に改行文字が含まれている可能性が、 少しでもあるなら、 \fB\-print\fP ではなく、 \fB\-print0\fP アクションの使用を是非考えてください。 ファイル名に、 普通は使わない文字が含まれている場合の扱いについては、 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \-print0 .\"O True; print the full file name on the standard output, followed by a .\"O null character (instead of the newline character that .\"O .B \-print .\"O uses). .\"O This allows file names that contain newlines or other types of white .\"O space to be correctly interpreted by programs that process the .\"O \fBfind\fR output. This option corresponds to the .\"O .B \-0 .\"O option of .\"O .BR xargs . .IP \-print0 true を返します。 パス付きのファイル名と、 最後にヌル文字をつけて、 標準出力に出力します (\fB\-print\fP が改行文字をつけるのとは異なります)。 このアクションを使えば、 \fBfind\fP の出力を処理するプログラムが、 改行文字やホワイトスペースを含むファイル名を、 正しく解釈できるようになります。 このアクションは、 \fBxargs\fP の \fB\-0\fP オプションに対応します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-printf \fIformat\fR" .\"O True; print \fIformat\fR on the standard output, interpreting `\e' .\"O escapes and `%' directives. Field widths and precisions can be .\"O specified as with the .\"O .BR printf (3) .\"O C function. Please note that many of .\"O the fields are printed as %s rather than %d, and this may mean that .\"O flags don't work as you might expect. This also means that the `\-' .\"O flag does work (it forces fields to be left-aligned). Unlike .\"O .BR \-print , .\"O .B \-printf .\"O does not add a newline at the end of the string. The escapes .\"O and directives are: .IP "\-printf \fIformat\fP" true を返します。 これは標準出力に \fIformat\fP を出力します。 \fIformat\fP 内の `\e' によるエスケープや、 `%' に始まるディレクティブを解釈します。 フィールドの幅や精度は、 C 言語の \fBprintf\fP(3) 関数と同じ方法で指定することができます。 多くのフィールドは、 %d としてではなく、 %s として出力されます。 このため、 フラグが期待通りに動作しないことも発生します。 一方で、 `\-' フラグ (フィールドを必ず左揃えにする指定) を使えば、 必ず動作します。 \fB\-print\fP とは違って、 \fB\-printf\fP は、 文字列の末尾に改行文字を追加しません。 エスケープとディレクティブには、 以下のものがあります。 .\"O ---------------------------------------- .\"O .RS .RS .\"O ---------------------------------------- .\"O .IP \ea .\"O Alarm bell. .IP \ea 警告ベル。 .\"O ---------------------------------------- .\"O .IP \eb .\"O Backspace. .IP \eb バックスペース。 .\"O ---------------------------------------- .\"O .IP \ec .\"O Stop printing from this format immediately and flush the output. .IP \ec このフォーマットによる出力をすぐに停止して、 出力をフラッシュします。 .\"O ---------------------------------------- .\"O .IP \ef .\"O Form feed. .IP \ef フォームフィード。 .\"O ---------------------------------------- .\"O .IP \en .\"O Newline. .IP \en 改行文字。 .\"O ---------------------------------------- .\"O .IP \er .\"O Carriage return. .IP \er 復帰文字。 .\"O ---------------------------------------- .\"O .IP \et .\"O Horizontal tab. .IP \et 水平タブ。 .\"O ---------------------------------------- .\"O .IP \ev .\"O Vertical tab. .IP \ev 垂直タブ。 .\"O ---------------------------------------- .\"O .IP \e0 .\"O ASCII NUL. .IP \e0 ASCII NUL 文字。 .\"O ---------------------------------------- .\"O .IP \e\e .\"O A literal backslash (`\e'). .IP \e\e バックスラッシュ文字そのもの (`\e')。 .\"O ---------------------------------------- .\"O .IP \eNNN .\"O The character whose ASCII code is NNN (octal). .IP \eNNN ASCII コードが NNN (8 進数) の文字。 .\"O ---------------------------------------- .\"O .PP .\"O A `\e' character followed by any other character is treated as an .\"O ordinary character, so they both are printed. .PP バックスラッシュ文字 `\e' に、 上記以外の文字が続いた場合は、 `\e' が普通の文字として扱われます。 つまり、 2 文字とも表示されることになります。 .\"O ---------------------------------------- .\"O .IP %% .\"O A literal percent sign. .IP %% パーセント文字そのもの。 .\"O ---------------------------------------- .\"O .IP %a .\"O File's last access time in the format returned by the C .\"O .BR ctime (3) .\"O function. .IP %a ファイルの最終アクセス時間を、 C 言語の \fBctime\fP(3) 関数が返す形式で表したものです。 .\"O ---------------------------------------- .\"O .IP %A\fIk\fP .\"O File's last access time in the format specified by .\"O .IR k , .\"O which is either `@' or a directive for the C .\"O .BR strftime (3) .\"O function. .\"O The following shows an incomplete list of possible values for \fIk\fR. .\"O Please refer to the documentation of .\"O .BR strftime (3) .\"O for the full list. .\"O Some of the conversion specification characters might not be available on all systems, .\"O due to differences in the implementation of the .\"O .BR strftime (3) .\"O library function. .IP %A\fIk\fP \fIk\fP で指定された書式に基づいて、 ファイルの最終アクセス時間を表したものです。 \fIk\fP に指定するのは、 `@' か、 あるいは C 言語の \fBstrftime\fP 関数で用いるディレクティブです。 以下に、 \fIk\fP に指定可能な値を示します。 ただし、 すべてを示すものではありません。 完全な一覧については、 \fBstrftime\fP(3) のドキュメントを参照してください。 指定文字に応じた文字列変換は、 システムによっては利用できない場合があります。 それは、 ライブラリ関数 \fBstrftime\fP(3) の実装が、 システムよって異なるからです。 .\"O ---------------------------------------- .\"O .RS .RS .\"O ---------------------------------------- .\"O .IP @ .\"O seconds since Jan.\& 1, 1970, 00:00 GMT, with fractional part. .IP @ Jan. 1, 1970, 00:00 GMT からの経過秒数。 小数点以下も表示します。 .\"O ---------------------------------------- .\"O .PP .\"O Time fields: .PP 時刻フィールド: .\"O ---------------------------------------- .\"O .IP H .\"O hour (00..23) .IP H 時 (00..23) .\"O ---------------------------------------- .\"O .IP I .\"O hour (01..12) .IP I 時 (01..12) .\"O ---------------------------------------- .\"O .IP k .\"O hour ( 0..23) .IP k 時 ( 0..23) .\"O ---------------------------------------- .\"O .IP l .\"O hour ( 1..12) .IP l 時 ( 1..12) .\"O ---------------------------------------- .\"O .IP M .\"O minute (00..59) .IP M 分 (00..59) .\"O ---------------------------------------- .\"O .IP p .\"O locale's AM or PM .IP p 現在のロケールにおいて AM/PM に相当する文字列。 .\"O ---------------------------------------- .\"O .IP r .\"O time, 12-hour (hh:mm:ss [AP]M) .IP r 12 時間制の時刻 (hh:mm:ss [AP]M) .\"O ---------------------------------------- .\"O .IP S .\"O Second (00.00 \&..\& 61.00). There is a fractional part. .IP S 秒 (00.00 \&..\& 61.00)。 小数点以下も表示します。 .\"O ---------------------------------------- .\"O .IP T .\"O time, 24-hour (hh:mm:ss.xxxxxxxxxx) .IP T 24 時間制の時刻 (hh:mm:ss.xxxxxxxxxx) .\"O ---------------------------------------- .\"O .IP + .\"O Date and time, separated by `+', for example .\"O `2004\-04\-28+22:22:05.0'. This is a GNU extension. The time is .\"O given in the current timezone (which may be affected by setting the TZ .\"O environment variable). The seconds field includes a fractional part. .IP + 日付と時刻。 両者の間は `2004\-04\-28+22:22:05.0' といったように '+' で 区切られます。 これは GNU 拡張です。 時間は、 現在のタイムゾーンによるものが用いられます (したがって、 環境変数 TZ の設定に影響を受ける場合があります)。 秒は、 小数点以下が含まれます。 .\"O ---------------------------------------- .\"O .IP X .\"O locale's time representation (H:M:S). The seconds field includes a .\"O fractional part. .IP X 現在のロケールによる時刻表示 (H:M:S)。 秒は小数点以下を含みます。 .\"O ---------------------------------------- .\"O .IP Z .\"O time zone (e.g., EDT), or nothing if no time zone is determinable .IP Z タイムゾーン (JST など)。 タイムゾーンが決定できなかった場合は、 何も表示されません。 .\"O ---------------------------------------- .\"O .PP .\"O Date fields: .PP 日付フィールド: .\"O ---------------------------------------- .\"O .IP a .\"O locale's abbreviated weekday name (Sun..Sat) .IP a 現在のロケールによる曜日の短縮形 (Sun..Sat)。 .\"O ---------------------------------------- .\"O .IP A .\"O locale's full weekday name, variable length (Sunday..Saturday) .IP A 現在のロケールによる、 曜日の省略しない表示。 長さは可変 (Sunday..Saturday)。 .\"O ---------------------------------------- .\"O .IP b .\"O locale's abbreviated month name (Jan..Dec) .IP b 現在のロケールによる月名の短縮形 (Jan..Dec)。 .\"O ---------------------------------------- .\"O .IP B .\"O locale's full month name, variable length (January..December) .IP B 現在のロケールによる月名の省略しない表示。 長さは可変 (January..December)。 .\"O ---------------------------------------- .\"O .IP c .\"O locale's date and time (Sat Nov 04 12:02:33 EST 1989). The format is .\"O the same as for .\"O .BR ctime (3) .\"O and so to preserve compatibility with that format, there is no fractional part .\"O in the seconds field. .IP c 現在のロケールによる日付と時刻の表示 (Sat Nov 04 12:02:33 EST 1989)。 この表示形式は、 \fBctime\fP(3) のものと同じであり、 \fBctime\fP(3) の形式との互換性を維持するためのものです。 秒は小数点表記されません。 .\"O ---------------------------------------- .\"O .IP d .\"O day of month (01..31) .IP d その月の何日目かの表示 (01..31)。 .\"O ---------------------------------------- .\"O .IP D .\"O date (mm/dd/yy) .IP D 日付 (mm/dd/yy)。 .\"O ---------------------------------------- .\"O .IP F .\"O date (yyyy-mm-dd) .IP F 日付 (yyyy\-mm\-dd)。 .\"O ---------------------------------------- .\"O .IP h .\"O same as b .IP h b と同じ。 .\"O ---------------------------------------- .\"O .IP j .\"O day of year (001..366) .IP j その年の何日目かの表示 (001..366)。 .\"O ---------------------------------------- .\"O .IP m .\"O month (01..12) .IP m 月 (01..12)。 .\"O ---------------------------------------- .\"O .IP U .\"O week number of year with Sunday as first day of week (00..53) .IP U その年の何週目か (日曜日を週の始まりとする) (00..53)。 .\"O ---------------------------------------- .\"O .IP w .\"O day of week (0..6) .IP w 曜日 (0..6)。 .\"O ---------------------------------------- .\"O .IP W .\"O week number of year with Monday as first day of week (00..53) .IP W その年の何週目か (月曜日を週の始まりとする) (00..53)。 .\"O ---------------------------------------- .\"O .IP x .\"O locale's date representation (mm/dd/yy) .IP x 現在のロケールによる日付表示 (mm/dd/yy)。 .\"O ---------------------------------------- .\"O .IP y .\"O last two digits of year (00..99) .IP y 年の下二桁 (00..99)。 .\"O ---------------------------------------- .\"O .IP Y .\"O year (1970...\&) .IP Y 年 (1970...\&)。 .\"O ---------------------------------------- .\"O .RE .RE .\"O ---------------------------------------- .\"O .IP %b .\"O The amount of disk space used for this file in 512-byte blocks. Since disk .\"O space is allocated in multiples of the filesystem block size this is usually .\"O greater than %s/512, but it can also be smaller if the file is a sparse file. .IP %b ファイルが使用するディスク容量を、 1 ブロック 512 バイトのブロック数で表示します。 ディスク領域は、 ファイルシステムブロックサイズの倍数によって割り当てられるので、 たいていは %s/512 より大きくなります。 ただしスパースファイルの場合は、 %s/512 より小さくなることがあります。 .\"O ---------------------------------------- .\"O .IP %c .\"O File's last status change time in the format returned by the C .\"O .BR ctime (3) .\"O function. .IP %c ファイルの最終ステータス変更時間を、 C 言語の \fBctime\fP(3) 関数が返す形式で表したものです。 .\"O ---------------------------------------- .\"O .IP %C\fIk\fP .\"O File's last status change time in the format specified by .\"O .IR k , .\"O which is the same as for %A. .IP %C\fIk\fP ファイルの最終ステータス変更時間を、 \fIk\fP で指定した書式で表したものです。 \fIk\fP は %A の場合と同様です。 .\"O ---------------------------------------- .\"O .IP %d .\"O File's depth in the directory tree; 0 means the file is a starting-point. .IP %d ディレクトリツリー内で、 対象ファイルがどれだけ深い階層数にあるかを示します。 0 は、 対象ファイルが検索開始ポイントにあることを意味します。 .\"O ---------------------------------------- .\"O .IP %D .\"O The device number on which the file exists (the st_dev field of struct .\"O stat), in decimal. .IP %D ファイルがどのデバイス上にあるかを、 10 進数のデバイス番号 (stat 構造体の st_dev フィールド) で示します。 .\"O ---------------------------------------- .\"O .IP %f .\"O Print the basename; the file's name with any leading directories .\"O removed (only the last element). For .\"O .BR / , .\"O the result is `/'. .\"O See the .\"O .B EXAMPLES .\"O section for an example. .IP %f ベース名を表します。 ファイル名から、 先頭にあるディレクトリ名を取り除きます (最後の要素のみを残します)。 \fB/\fP に対する結果は `/' です。 処理例については「\fB例\fP」セクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP %F .\"O Type of the filesystem the file is on; this value can be used for .\"O \-fstype. .IP %F ファイルがあるファイルシステムのタイプを表します。 ここで表示される値は \-fstype の引数に指定することができます。 .\"O ---------------------------------------- .\"O .IP %g .\"O File's group name, or numeric group ID if the group has no name. .IP %g ファイルのグループ名を表します。 グループ名が存在しない場合は、 グループ ID 番号を表します。 .\"O ---------------------------------------- .\"O .IP %G .\"O File's numeric group ID. .IP %G ファイルのグループ ID 番号。 .\"O ---------------------------------------- .\"O .IP %h .\"O Dirname; the Leading directories of the file's name (all but the last .\"O element). If the file name contains no slashes (since it is in the .\"O current directory) the %h specifier expands to `.'. For files which .\"O are themselves directories and contain a slash (including .\"O .BR / ), .\"O %h expands to the empty string. See the .\"O .B EXAMPLES .\"O section for an example. .IP %h ディレクトリ名を表します。 つまり、 ファイル名の先頭にあるディレクトリ部分 (最後の要素以外のすべて) を表します。 ファイル名にスラッシュが一つも含まれない場合 (カレントディレクトリ内にあることになるので)、 書式指定子 %h は `.' に展開されます。対象ファイルがディレクトリそのものであって、 スラッシュ \fB/\fP を含む場合、 %h は空文字に展開されます。 具体例は「\fB例\fP」セクションを参照してください。 .\"O ---------------------------------------- .\"O .IP %H .\"O Starting-point under which file was found. .IP %H 検索開始ポイントのうち、 対象ファイルが見つかったものを表します。 .\"O ---------------------------------------- .\"O .IP %i .\"O File's inode number (in decimal). .IP %i ファイルの i ノード番号 (10 進数表示)。 .\"O ---------------------------------------- .\"O .IP %k .\"O The amount of disk space used for this file in 1\ KB blocks. .\"O Since disk space is allocated in multiples of the filesystem block .\"O size this is usually greater than %s/1024, .\"O but it can also be smaller if the file is a sparse file. .IP %k ファイルが利用するディスク容量を、 1 ブロック 1 KB のブロック数で表示します。 ディスク領域は、 ファイルシステムのブロックサイズの倍数によって割り当てられるので、 たいていは %s/1024 より大きくなります。 スパースファイルの場合は、 %s/1024 より小さくなることがあります。 .\"O ---------------------------------------- .\"O .IP %l .\"O Object of symbolic link (empty string if file is not a symbolic link). .IP %l シンボリックリンク先 (シンボリックリンクでない場合は、 空文字列) を表します。 .\"O ---------------------------------------- .\"O .IP %m .\"O File's permission bits (in octal). This option uses the `traditional' .\"O numbers which most Unix implementations use, but if your particular .\"O implementation uses an unusual ordering of octal permissions bits, you .\"O will see a difference between the actual value of the file's mode and .\"O the output of %m. .\"O Normally you will want to have a leading zero on this number, .\"O and to do this, you should use the .\"O .B # .\"O flag (as in, for example, `%#m'). .IP %m ファイルの許可属性ビット (8 進数表示) を表します。 このオプションが使用している数値は、 たいていの Unix 実装において用いられる「従来の」数値です。 しかし利用中のシステム実装においては、 8 進数で表示する許可属性ビットの並び方が、 普通とは異なるかもしれません。 その場合は、 ファイルの許可属性の実際の値と、 %m の出力とが異なることになります。 数値の先頭に 0 をつけて表示したい場合があります。 そのときは、 \fB#\fP フラグを使って、 たとえば `%#m' のようにします。 .\"O ---------------------------------------- .\"O .IP %M .\"O File's permissions (in symbolic form, as for .\"O .BR ls ). .\"O This directive is supported in findutils 4.2.5 and later. .IP %M ファイルの許可属性を表します (\fBls\fP と同様のシンボルによる表現)。 このディレクティブは、 findutils 4.2.5 以降にサポートされるようになりました。 .\"O ---------------------------------------- .\"O .IP %n .\"O Number of hard links to file. .IP %n ファイルのハードリンク数。 .\"O ---------------------------------------- .\"O .IP %p .\"O File's name. .IP %p ファイル名。 .\"O ---------------------------------------- .\"O .IP %P .\"O File's name with the name of the starting-point under which .\"O it was found removed. .IP %P 検索開始ポイント名を使って表現した、 対象ファイル名であって、 現在削除されたものを表します。 .\"O ---------------------------------------- .\"O .IP %s .\"O File's size in bytes. .IP %s バイト単位によるファイルサイズ。 .\"O ---------------------------------------- .\"O .IP %S .\"O File's sparseness. This is calculated as (BLOCKSIZE*st_blocks / .\"O st_size). The exact value you will get for an ordinary file of a .\"O certain length is system-dependent. However, normally sparse files .\"O will have values less than 1.0, and files which use indirect blocks .\"O may have a value which is greater than 1.0. In general the number of .\"O blocks used by a file is file system dependent. .\"O The value used for BLOCKSIZE is system-dependent, but is usually 512 .\"O bytes. .\"O If the file size is zero, the value printed is undefined. .\"O On systems which lack support for st_blocks, .\"O a file's sparseness is assumed to be 1.0. .IP %S ファイルが「まばら」である度合い (sparseness) を表します。 この値は (BLOCKSIZE*st_blocks / st_size) として計算されます。 ある程度の大きさを持つ普通のファイルの場合、 その正確な値は、 システムによってさまざまです。 スパースファイルであれば、 「まばら」な度合いは、 普通は 1.0 未満です。 一方で、 間接ブロックを使用しているファイルの場合は、 1.0 以上になることがあります。 BLOCKSIZE に設定される値は、 システムに依存しますが、 通常は 512 バイトです。 ファイルサイズが 0 の場合、 この値は未定義として出力されます。 st_blocks をサポートしていないシステムでは、 ファイルの「まばら」な度合いは、 1.0 とみなされます。 .\"O ---------------------------------------- .\"O .IP %t .\"O File's last modification time in the format returned by the C .\"O .BR ctime (3) .\"O function. .IP %t ファイルの最終更新時間を、 C 言語の \fBctime\fP(3) 関数が返す形式で表したものです。 .\"O ---------------------------------------- .\"O .IP %T\fIk\fP .\"O File's last modification time in the format specified by .\"O .IR k , .\"O which is the same as for %A. .IP %T\fIk\fP \fIk\fP で指定された書式に基づいて、 ファイルの最終更新時間を表したものです。 \fIk\fP は %A の場合と同様です。 .\"O ---------------------------------------- .\"O .IP %u .\"O File's user name, or numeric user ID if the user has no name. .IP %u ファイルを所有するユーザー名。 ユーザーに名前がない場合は、 ユーザー ID 番号が用いられます。 .\"O ---------------------------------------- .\"O .IP %U .\"O File's numeric user ID. .IP %U ファイルを所有するユーザーの ID 番号。 .\"O ---------------------------------------- .\"O .IP %y .\"O File's type (like in .\"O .BR "ls \-l" ), .\"O U=unknown type (shouldn't happen) .IP %y ファイルタイプ (\fBls \-l\fP の表現と同様です)。 U はタイプ不明 (unknown type) を表します (発生することはありません)。 .\"O ---------------------------------------- .\"O .IP %Y .\"O File's type (like %y), plus follow symbolic links: `L'=loop, `N'=nonexistent, .\"O `?' for any other error when determining the type of the target of a symbolic .\"O link. .IP %Y ファイルタイプ (%y と同様)。 さらに、 シンボリックリンクをたどります。 `L' はループ、 `N' は非存在、 `?' はその他のエラーであり、 シンボリックリンク先のタイプが決定できなかった場合です。 .\"O ---------------------------------------- .\"O .IP %Z .\"O (SELinux only) file's security context. .IP %Z (SELinux 有効時のみ) ファイルのセキュリティコンテキスト。 .\"O ---------------------------------------- .\"O .IP "%{ %[ %(" .\"O Reserved for future use. .IP "%{ %[ %(" 将来の利用のために予約されています。 .\"O ---------------------------------------- .\"O .PP .\"O A `%' character followed by any other character is discarded, but the .\"O other character is printed (don't rely on this, as further format .\"O characters may be introduced). A `%' at the end of the format .\"O argument causes undefined behaviour since there is no following .\"O character. In some locales, it may hide your door keys, while in .\"O others it may remove the final page from the novel you are reading. .PP 1 つの `%' に対して、 上記以外の文字が続く場合、 `%' 文字は無視されて、 それに続いた文字が表示されます (新たに指定文字が定義されるかもしれないため、 この動作に期待するのは避けてください)。 書式指定の文字列の最後に `%' だけが 1 つあると、 次に文字がないため、 その動作は不定となります。 何が起きるか分かりませんから、 ロケールによっては、 ドアの鍵を紛失するかもしれませんし、 せっかく読んでいる小説の最後のページが、 なくなってしまうかもしれません。 .\"O ---------------------------------------- .\"O .\"O The %m and %d directives support the .\"O .BR # , .\"O .B 0 .\"O and .\"O .B + .\"O flags, but the other directives do not, even if they .\"O print numbers. Numeric directives that do not support these flags .\"O include .\"O .BR G , .\"O .BR U , .\"O .BR b , .\"O .BR D , .\"O .B k .\"O and .\"O .BR n . .\"O The `\-' format flag is supported and changes the alignment of a field .\"O from right-justified (which is the default) to left-justified. ディレクティブ %m と %d は、 書式フラグ \fB#\fP, \fB0\fP, \fB+\fP をサポートします。 これ以外のディレクティブは、 数値を表す場合であっても、 このフラグをサポートしません。 このフラグをサポートしない数値関連のディレクティブには、 \fBG\fP, \fBU\fP, \fBb\fP, \fBD\fP, \fBk\fP, \fBn\fP があります。 書式フラグとして `\-' もサポートされています。これを使えば、 欄出力の右揃え (デフォルト) を左揃えに変更することができます。 .\"O ---------------------------------------- .\"O .PP .\"O See the .\"O .B UNUSUAL FILENAMES .\"O section for information about how unusual characters in filenames are handled. .PP ファイル名に、 普通は使わない文字が含まれている場合の扱いについては、 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .RE .RE .\"O ---------------------------------------- .\"O .IP \-prune .\"O True; if the file is a directory, do not descend into it. If .\"O .B \-depth .\"O is given, then .\"O .B \-prune .\"O has no effect. Because .\"O .B \-delete .\"O implies .\"O .BR \-depth , .\"O you cannot usefully use .\"O .B \-prune .\"O and .\"O .B \-delete .\"O together. .\"O For example, to skip the directory .\"O .I src/emacs .\"O and all files and directories under it, and print the names of the other files .\"O found, do something like this: .\"O .in +4m .\"O .nf .\"O find . \-path ./src/emacs \-prune \-o \-print .\"O .fi .\"O .in .IP \-prune true を返します。 処理対象がディレクトリである場合、 ディレクトリ内に入っていきません。 \fB\-depth\fP が指定してあると、 \fB\-prune\fP は何もしません。 \fB\-delete\fP の指定には、 暗に \fB\-depth\fP の指定が含まれているので、 \fB\-prune\fP と \fB\-delete\fP を同時に使うことはできません。 たとえば、 \fIsrc/emacs\fP というディレクトリとその下にあるファイルやディレクトリはスキップするとします。 そしてそれ以外のファイルを表示しようとする場合には、 以下のように実行します。 .in +4m .nf find . \-path ./src/emacs \-prune \-o \-print .fi .in .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-quit" .\"O Exit immediately (with return value zero if no errors have occurred). .\"O This is different to .\"O .B \-prune .\"O because .\"O .B \-prune .\"O only applies to the contents of pruned directories, while .\"O .B \-quit .\"O simply makes .\"O .B find .\"O stop immediately. No child processes will be left .\"O running. Any command lines which have been built by .\"O .B \-exec\ ...\ + .\"O or .\"O .B \-execdir\ ...\ + .\"O are invoked before the program is .\"O exited. After .\"O .B \-quit .\"O is executed, no more files specified on the command line will be .\"O processed. For example, .\"O .RB ` "find\ \fI/tmp/foo\fP\ \fI/tmp/bar\fP\ \-print\ \-quit" ` .\"O will print only `/tmp/foo`. .\"O .br .\"O One common use of .\"O .B \-quit .\"O is to stop searching the file system once we have .\"O found what we want. For example, if we want to find just a single .\"O file we can do this: .\"O .in +4m .\"O .nf .\"O find / -name needle -print -quit .\"O .fi .\"O .in .IP \-quit すぐに終了します (エラーが発生していなければ 0 を返します)。 これは \fB\-prune\fP とは異なります。 \fB\-prune\fP は、 適用されたディレクトリの内容を、 対象外とするものですが、 \fB\-quit\fP は単純に \fBfind\fP をその場で止めます。 子プロセスが残ることはありません。 コマンドラインが、 \fB\-exec\ ...\ +\fP や \fB\-execdir\ ...\ +\fP の形式で構成されていた場合、 そのコマンドはすべて呼び出されてから、 プログラムが終了します。 \fB\-quit\fP が実行されると、 コマンドライン上に指定されていた残りのファイルは、 処理されません。 たとえば `\fBfind\ \fP\fI/tmp/foo\fP\fB\ \fP \fI/tmp/bar\fP\fB\ \-print\ \-quit\fP` では、 `/tmp/foo` だけが表示されます。 .br \fB\-quit\fP を利用するごく普通のケースとして、 ファイルシステム内から検索したいものが見つかったら、 検索をやめるという使い方があります。 たとえば、 1 つのファイルだけを見つけたい場合には、 以下のようにすることができます。 .in +4m .nf find / \-name needle \-print \-quit .fi .in .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .SS OPERATORS .\"O Listed in order of decreasing precedence: .SS オペレーター 以下ではオペレーターを、 優先順位の高いものから順に示します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "( \fIexpr\fR )" .\"O Force precedence. Since parentheses are special to the shell, you .\"O will normally need to quote them. Many of the examples in this manual .\"O page use backslashes for this purpose: `\e(...\e)' instead of `(...)'. .IP "( \fIexpr\fP )" カッコ内を優先的に処理します。 シェルにとって、 カッコには特別な意味があるため、 普通はクォートでくくる必要があります。 このマニュアルページであげている例では、 この目的でバックスラッシュを多用しています。 つまり `(...)' は、 `\e(...\e)' のように記述しています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "! \fIexpr\fR" .\"O True if \fIexpr\fR is false. This character will also usually need .\"O protection from interpretation by the shell. .IP "! \fIexpr\fP" \fIexpr\fP が false の場合に true となります。 通常この記号も、 シェルによって解釈されないようにする必要があります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-not \fIexpr\fR" .\"O Same as !\& .\"O .IR expr , .\"O but not POSIX compliant. .IP "\-not \fIexpr\fP" !\& \fIexpr\fP と同様ですが、 POSIX には準拠していません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\fIexpr1 expr2\fR" .\"O Two expressions in a row are taken to be joined with an .\"O implied .\"O .BR \-a ; .\"O \fIexpr2\fR is not evaluated if \fIexpr1\fR is false. .IP "\fIexpr1 expr2\fP" 2 つ並んだ式は、 暗に \fB\-a\fP によって結合されたものとして扱われます。 そして \fIexpr1\fP が false の場合、 \fIexpr2\fP は評価されません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\fIexpr1\fR \-a \fIexpr2\fR" .\"O Same as .\"O .IR "expr1 expr2" . .IP "\fIexpr1\fP \-a \fIexpr2\fP" \fIexpr1 expr2\fP と同じです。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\fIexpr1\fR \-and \fIexpr2\fR" .\"O Same as .\"O .IR "expr1 expr2" , .\"O but not POSIX compliant. .IP "\fIexpr1\fP \-and \fIexpr2\fP" \fIexpr1 expr2\fP と同様ですが、 POSIX には準拠していません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\fIexpr1\fR \-o \fIexpr2\fR" .\"O Or; \fIexpr2\fR is not evaluated if \fIexpr1\fR is true. .IP "\fIexpr1\fP \-o \fIexpr2\fP" OR 結合です。 \fIexpr1\fP が true のとき、 \fIexpr2\fP は評価されません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\fIexpr1\fR \-or \fIexpr2\fR" .\"O Same as \fIexpr1\fR .\"O .B \-o .\"O .IR expr2 , .\"O but not POSIX compliant. .IP "\fIexpr1\fP \-or \fIexpr2\fP" \fIexpr1\fP \fB\-o\fP \fIexpr2\fP と同様ですが、 POSIX には準拠していません。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\fIexpr1\fR , \fIexpr2\fR" .\"O List; both \fIexpr1\fR and \fIexpr2\fR are always evaluated. The .\"O value of \fIexpr1\fR is discarded; the value of the list is the value .\"O of .\"O .IR expr2 . .\"O The comma operator can be useful for searching for .\"O several different types of thing, but traversing the filesystem .\"O hierarchy only once. The .\"O .B \-fprintf .\"O action can be used to list the various matched items into several .\"O different output files. .IP "\fIexpr1\fP , \fIexpr2\fP" リストを表します。 必ず \fIexpr1\fP と \fIexpr2\fP の両方が評価されます。 \fIexpr1\fP の値は無視されて、 \fIexpr2\fP の値が、 リストとしての値になります。 このカンマオペレーターは、 さまざまな種類のものを探すときに便利です。 ただしファイルシステム内の検索は、 一度しか行われません。 さまざまなものに一致した結果を、 複数ファイルに出力するには、 \fB\-fprintf\fP アクションを利用します。 .\"O ---------------------------------------- .\"O .P .\"O Please note that .\"O .B \-a .\"O when specified implicitly (for example by two tests appearing without .\"O an explicit operator between them) or explicitly has higher precedence .\"O than .\"O .BR \-o . .\"O This means that .\"O .B find . \-name afile \-o \-name bfile \-print .\"O will never print .\"O .IR afile . .\"O . .P 暗に \fB\-a\fP の指定を意図した場合 (たとえばテストとテストの間に、 このオペレーターを記述しなかった場合)、 あるいは明示的に指定した場合は、 \fB\-o\fP よりも優先順位が高いことを覚えておいてください。 たとえば、 \fBfind . \-name afile \-o \-name bfile \-print\fP とした場合、 \fIafile\fP が出力されることはない、 ということです。 . .\"O ---------------------------------------- .\"O .SH UNUSUAL FILENAMES .\"O Many of the actions of .\"O .B find .\"O result in the printing of data which is under the control of other .\"O users. This includes file names, sizes, modification times and so .\"O forth. File names are a potential problem since they can contain any .\"O character except `\e0' and `/'. Unusual characters in file names can .\"O do unexpected and often undesirable things to your terminal (for .\"O example, changing the settings of your function keys on some .\"O terminals). Unusual characters are handled differently by various .\"O actions, as described below. .SH 普通ではないファイル名 \fBfind\fP のアクションの多くでは、 他ユーザーが、 出力されるデータを自由に制御できます。 データには、 ファイル名、 サイズ、 更新時間など、 さまざまなものがあります。 ファイル名は、 `\e0' と `/' 以外の文字であれば、 何でも含めることができるため、 潜在的な問題を抱えています。 ファイル名の中に、 普段用いない文字が含まれていると、 端末に対して、 予期しない動作や、 時には望ましくない事態を引き起こすことも可能です。 (たとえば端末次第では、 ファンクションキーの設定変更が行われてしまうかもしれません)。 普段使わない文字を、 どのように処理するかについては、 アクションごとに動作が異なります。 以下にこのことを示します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-print0, \-fprint0" .\"O Always print the exact filename, unchanged, even if the output is .\"O going to a terminal. .IP "\-print0, \-fprint0" 常にファイル名を修正せずに、 そのまま出力します。 出力先が端末であっても同じです。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-ls, \-fls" .\"O Unusual characters are always escaped. White space, backslash, and .\"O double quote characters are printed using C-style escaping (for .\"O example `\ef', `\e\(dq'). Other unusual characters are printed using an .\"O octal escape. Other printable characters (for .\"O .B \-ls .\"O and .\"O .B \-fls .\"O these are the characters between octal 041 and 0176) are printed as-is. .IP "\-ls, \-fls" 普段使わない文字は、 必ずエスケープされます。 ホワイトスペース、 バックスラッシュ、 ダブルクォートは、 C 言語のようなエスケープ表現で出力されます (`\ef', `\e"' など)。 その他の文字では、 8 進数表記によってエスケープして出力されます。 通常の表示可能な文字 (\fB\-ls\fP や \fB\-fls\fP においては、 8 進数の 041 から 0176 に相当する文字) は、 そのまま出力されます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-printf, \-fprintf" .\"O If the output is not going to a terminal, it is printed as-is. .\"O Otherwise, the result depends on which directive is in use. The .\"O directives %D, %F, %g, %G, %H, %Y, and %y expand to values which are .\"O not under control of files' owners, and so are printed as-is. The .\"O directives %a, %b, %c, %d, %i, %k, %m, %M, %n, %s, %t, %u and %U have .\"O values which are under the control of files' owners but which cannot .\"O be used to send arbitrary data to the terminal, and so these are .\"O printed as-is. The directives %f, %h, %l, %p and %P are quoted. This .\"O quoting is performed in the same way as for GNU .\"O .BR ls . .\"O This is not the same quoting mechanism as the one used for .\"O .B \-ls .\"O and .\"O .BR \-fls . .\"O If you are able to decide what format to use for the output of .\"O .B find .\"O then it is normally better to use `\e0' as a terminator .\"O than to use newline, as file names can contain white space and newline .\"O characters. The setting of the `LC_CTYPE' environment .\"O variable is used to determine which characters need to be quoted. .IP "\-printf, \-fprintf" 出力先が端末でない場合は、 そのまま出力されます。 出力先が端末の場合は、 利用するディレクティブによって、 出力は変わります。 ディレクティブ %D, %F, %g, %G, %H, %Y, %y が展開される値は、 ファイル所有者が制御するものではないため、 そのまま出力されます。 ディレクティブ %a, %b, %c, %d, %i, %k, %m, %M, %n, %s, %t, %u, %U の値は、 ファイル所有者が制御可能なものですが、 だからと言って、 端末に任意にデータ送信してよいものではありません。 したがってこのときのデータも、 そのまま出力されます。 ディレクティブ %f, %h, %l, %p, %P の出力値は、 クォートでくくられます。 クォートでくくるこの方法は、 GNU \fBls\fP の場合と同じです。 逆に \fB\-ls\fP や \fB\-fls\fP における方法とは異なります。 \fBfind\fP の出力書式を自由に定めてよい、 ということになれば、 普通は、 終端文字として改行ではなく、 `\e0' を用いるように変更するのが適切です。 これを行うのは、 ファイル名に、 空白や改行が含まれる場合があるためです。 どの文字をクォートでくくるかは、 環境変数 `LC_CTYPE' の設定を用いて決定されます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "\-print, \-fprint" .\"O Quoting is handled in the same way as for .\"O .B \-printf .\"O and .\"O .BR \-fprintf . .\"O If you are using .\"O .B find .\"O in a script or in a situation where the matched files might have .\"O arbitrary names, you should consider using .\"O .B \-print0 .\"O instead of .\"O .BR \-print . .IP "\-print, \-fprint" クォートでくくる方法は、 \fB\-printf\fP や \fB\-fprintf\fP と同じです。 \fBfind\fP をスクリプト内で利用する場合や、 一致したファイルにあらゆる文字が含まれる可能性がある場合には、 \fB\-print\fP を用いるのではなく、 \fB\-print0\fP を用いるようにしてください。 .\"O ---------------------------------------- .\"O .P .\"O The .\"O .B \-ok .\"O and .\"O .B \-okdir .\"O actions print the current filename as-is. This may change in a future release. .\"O . .P アクション \fB\-ok\fP と \fB\-okdir\fP は、 対象ファイル名をそのまま出力します。 この動作は、 将来のリリースで変わるかもしれません。 . .\"O ---------------------------------------- .\"O .SH "STANDARDS CONFORMANCE" .\"O For closest compliance to the POSIX standard, you should set the .\"O POSIXLY_CORRECT environment variable. The following options are .\"O specified in the POSIX standard (IEEE Std 1003.1-2008, 2016 Edition): .SH 規格への準拠 POSIX 規格にできるだけ準拠した動作が必要であれば、 環境変数 POSIXLY_CORRECT を設定してください。 以下のオプションは、 POSIX 規格 (IEEE Std 1003.1\-2008, 2016 Edition) の中で規定されています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \fB\-H\fR .\"O This option is supported. .IP \fB\-H\fP このオプションはサポートされています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \fB\-L\fR .\"O This option is supported. .IP \fB\-L\fP このオプションはサポートされています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \fB\-name\fR .\"O This option is supported, but POSIX conformance depends on the .\"O POSIX conformance of the system's .\"O .BR fnmatch (3) .\"O library function. As of findutils-4.2.2, shell metacharacters .\"O (`*', `?' or `[]' for example) match a leading `.', because .\"O IEEE PASC interpretation 126 requires this. .\"O This is a change from previous versions of findutils. .IP \fB\-name\fP このオプションはサポートされていますが、 POSIX への適応は、 システムの \fBfnmatch\fP(3) ライブラリ関数が、 どれだけ POSIX に準拠しているかによって、 変わります。 findutils\-4.2.2 以降、 シェルのメタ文字 (たとえば `*', `?', `[]') は、 ファイル名先頭の `.' 文字に一致するようになりました。 これは IEEE PASC interpretation 126 の要求に従ったものです。 これは、 それ以前の findutils のバージョンから、 変更されている点です。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \fB\-type\fR .\"O Supported. .\"O POSIX specifies `b', `c', `d', `l', `p', `f' and `s'. .\"O GNU find also supports `D', representing a Door, where the OS provides these. .\"O Furthermore, GNU find allows multiple types to be specified at once in a .\"O comma-separated list. .IP \fB\-type\fP サポートされています。 POSIX では `b', `c', `d', `l', `p', `f', `s' を規定しています。 GNU find は、 この他にドア (door) を表す `D' もサポートしています。 これが使えるのは、 OS がこの機能を提供している場合です。 さらに、 GNU find では、 複数の型指定を一度に行うことが可能であり、 その場合には、 カンマで区切ったリストを指定します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \fB\-ok\fR .\"O Supported. .\"O Interpretation of the response is according to the `yes' and `no' .\"O patterns selected by setting the `LC_MESSAGES' environment variable. .\"O When the `POSIXLY_CORRECT' environment variable is set, these patterns .\"O are taken system's definition of a positive (yes) or negative (no) .\"O response. See the system's .\"O documentation for .\"O .BR nl_langinfo (3), .\"O in particular YESEXPR and NOEXPR. .\"O When `POSIXLY_CORRECT' is not set, the patterns are instead taken from .\"O .BR find 's .\"O own message catalogue. .IP \fB\-ok\fP サポートされています。 プロンプトに対する入力は、 `yes'、 `no' を表すパターンに従って解釈されます。 そのパターンは、 環境変数 `LC_MESSAGES' の設定内容により決定します。 環境変数 `POSIXLY_CORRECT' が設定されている場合は、 そのパターンが、 `yes'、 `no' の入力に対するシステム定義として扱われます。 \fBnl_langinfo\fP(3) に関するドキュメント、 特に YESEXPR と NOEXPR について参照してください。 `POSIXLY_CORRECT' が設定されていない場合、 そのパターンは、 \fBfind\fP が持っているメッセージカタログから取得されます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \fB\-newer\fR .\"O Supported. If the file specified is a symbolic link, it is always .\"O dereferenced. This is a change from previous behaviour, which used to .\"O take the relevant time from the symbolic link; see the HISTORY section .\"O below. .IP \fB\-newer\fP サポートされています。 指定されたファイルがシンボリックリンクの場合は、 必ずリンク先が参照されます。 これは以前のバージョンから変更されたものであり、 以前は、 比較に用いる時間をシンボリックリンクから取得していました。 「履歴」セクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP \fB\-perm\fR .\"O Supported. If the POSIXLY_CORRECT environment variable is not set, .\"O some mode arguments (for example +a+x) which are not valid in POSIX .\"O are supported for backward-compatibility. .IP \fB\-perm\fP サポートされています。 環境変数 POSIXLY_CORRECT が設定されていない場合には、 POSIX では認められていない (たとえば、 +a+x のような) モード引数であっても、 後方互換のために利用できるものがあります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP "Other primaries" .\"O The primaries .\"O .BR \-atime , .\"O .BR \-ctime , .\"O .BR \-depth , .\"O .BR \-exec , .\"O .BR \-group , .\"O .BR \-links , .\"O .BR \-mtime , .\"O .BR \-nogroup , .\"O .BR \-nouser , .\"O .BR \-ok , .\"O .BR \-path , .\"O .BR \-print , .\"O .BR \-prune , .\"O .BR \-size , .\"O .B \-user .\"O and .\"O .B \-xdev .\"O are all supported. .IP その他のプライマリ 式を構成するプライマリ (primary) として、 \fB\-atime\fP, \fB\-ctime\fP, \fB\-depth\fP, \fB\-group\fP, \fB\-links\fP, \fB\-mtime\fP, \fB\-nogroup\fP, \fB\-nouser\fP, \fB\-perm\fP, \fB\-print\fP, \fB\-prune\fP, \fB\-size\fP, \fB\-user\fP \fB\-xdev\fP が、 すべてサポートされています。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .P .\"O The POSIX standard specifies parentheses `(', `)', negation `!' and the .\"O logical AND/OR operators .\"O .B \-a .\"O and .\"O .BR \-o . .P POSIX 規格は、 カッコ `(', `)'、 否定 `!'、 論理 AND/OR のオペレーター \fB\-a\fP, \fB\-o\fP を規定しています。 .\"O ---------------------------------------- .\"O .P .\"O All other options, predicates, expressions and so forth are extensions .\"O beyond the POSIX standard. Many of these extensions are not unique to .\"O GNU find, however. .P 上記を除いたオプション、 述語、 式などは、 すべて POSIX 規格にはない拡張です。 ただしその拡張の多くは、 GNU find に特有なものではありません。 .\"O ---------------------------------------- .\"O .P .\"O The POSIX standard requires that .\"O .B find .\"O detects loops: .P POSIX 規格における \fBfind\fP は、 ループの検出ができなければならないと定めています。 .\"O ---------------------------------------- .\"O .IP .\"O The .\"O .B find .\"O utility shall detect infinite loops; that is, entering a .\"O previously visited directory that is an ancestor of the last file .\"O encountered. When it detects an infinite loop, find shall write a .\"O diagnostic message to standard error and shall either recover its .\"O position in the hierarchy or terminate. .IP \fBfind\fP ユーティリティは、 無限ループを検出できなければなりません。 無限ループとは、 処理対象となったファイルの上位ディレクトリが、 以前に処理していたものであって、 そのディレクトリに入ることです。 無限ループを検出した場合、 find は、 診断メッセージを標準エラー出力に書き出すものとします。 そして、 ディレクトリ階層上での検索位置を復旧するか、 あるいは終了するものとします。 .\"O ---------------------------------------- .\"O .P .\"O GNU .\"O .B find .\"O complies with these requirements. The link count of .\"O directories which contain entries which are hard links to an ancestor .\"O will often be lower than they otherwise should be. This can mean that .\"O GNU find will sometimes optimise away the visiting of a subdirectory .\"O which is actually a link to an ancestor. Since .\"O .B find .\"O does not actually enter such a subdirectory, it is allowed to avoid .\"O emitting a diagnostic message. Although this behaviour may be .\"O somewhat confusing, it is unlikely that anybody actually depends on .\"O this behaviour. If the leaf optimisation has been turned off with .\"O .BR \-noleaf , .\"O the directory entry will always be examined and the diagnostic message .\"O will be issued where it is appropriate. Symbolic links cannot be used .\"O to create filesystem cycles as such, but if the .\"O .B \-L .\"O option or the .\"O .B \-follow .\"O option is in use, a diagnostic message is issued when .\"O .B find .\"O encounters a loop of symbolic links. As with loops containing hard .\"O links, the leaf optimisation will often mean that .\"O .B find .\"O knows that it doesn't need to call .\"O .I stat() .\"O or .\"O .I chdir() .\"O on the symbolic link, so this diagnostic is frequently not necessary. .P GNU \fBfind\fP は、 この要件を満たしています。 上位ディレクトリへのハードリンクを含んだディレクトリと、 そういったものを含まないディレクトリを比較してみると、 ディレクトリのリンク数は、 前者の方が少なくなることがよくあります。 このことがあるため、 上位ディレクトリへのリンクであるサブディレクトリに対して、 GNU find は、 最適化によって、 そのディレクトリを調べないケースが発生します。 \fBfind\fP は実際に、 そういったサブディレクトリに入っていかないため、 診断メッセージの出力を抑えることができます。 わかりにくい処理かもしれませんが、 実際にこの動作に期待する人は、 まずいません。 \fB\-noleaf\fP オプションの指定によって、 葉 (leaf) に関する最適化処理が無効になっていた場合、 ディレクトリの各エントリは、 必ず調べられます。 したがって診断メッセージは、 必要な場面で表示されます。 シンボリックリンクを使っていれば、 ファイルシステム上にこのようなリンクを作り出すことはできません。 ただし \fB\-L\fP オプションや \fB\-follow\fP オプションを指定しているときには、 シンボリックリンクのループが見つかると、 診断メッセージが表示されます。 ハードリンクを含むループの場合と同様に、 葉に関する最適化によって、 \fBfind\fP がシンボリックリンクに対して、 \fIstat()\fP や \fIchdir()\fP を用いる必要がないと判断することがあるため、 診断情報は、 かなりの頻度で必要なくなります。 .\"O ---------------------------------------- .\"O .P .\"O The .\"O .B \-d .\"O option is supported for compatibility with various BSD systems, .\"O but you should use the POSIX-compliant option .\"O .B \-depth .\"O instead. .P \fB\-d\fP オプションは、 各種の BSD システムとの互換性のためにサポートされています。 したがって、 これを使うのではなく、 POSIX に準拠する \fB\-depth\fP オプションを用いてください。 .\"O ---------------------------------------- .\"O .P .\"O The POSIXLY_CORRECT environment variable does not affect the behaviour .\"O of the .\"O .B \-regex .\"O or .\"O .B \-iregex .\"O tests because those tests aren't specified in the POSIX standard. .\"O . .P 環境変数 POSIXLY_CORRECT は、 テスト \fB\-regex\fP や \fB\-iregex\fP の動作に影響を与えません。 こういったテストは、 POSIX では規定されていないためです。 . .\"O ---------------------------------------- .\"O .SH "ENVIRONMENT VARIABLES" .SH 環境変数 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP LANG .\"O Provides a default value for the internationalization variables that .\"O are unset or null. .IP LANG 国際化関連の環境変数において、 値が設定されていない、 あるいは null であるものに対して、 デフォルト値を提供します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP LC_ALL .\"O If set to a non-empty string value, override the values of all the .\"O other internationalization variables. .IP LC_ALL この環境変数に、 空文字列ではない値が設定されていれば、 国際化関連の環境変数を上書きします。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP LC_COLLATE .\"O The POSIX standard specifies that this variable affects the pattern .\"O matching to be used for the .\"O .B \-name .\"O option. .\"O GNU find uses the .\"O .BR fnmatch (3) .\"O library function, and so support for `LC_COLLATE' depends on the .\"O system library. .\"O This variable also affects the interpretation of the response to .\"O .BR \-ok ; .\"O while the `LC_MESSAGES' variable selects the actual pattern used to .\"O interpret the response to .\"O .BR \-ok , .\"O the interpretation of any bracket expressions in the pattern will be .\"O affected by `LC_COLLATE'. .IP LC_COLLATE POSIX の規定では、 この環境変数は、 テスト \fB\-name\fP で用いられるパターンマッチングに影響を及ぼします。 GNU find は、 \fBfnmatch\fP(3) ライブラリ関数を利用しているので、 LC_COLLATE への対応は、 システムのライブラリ次第です。 またこの変数は、 アクション \fB\-ok\fP の入力値の解釈にも影響します。 \fB\-ok\fP における入力値を解釈するものとして、 実際に用いられるパターンは、 LC_MESSAGES 変数の値によって決定されますが、 そのパターンの中に角カッコによる表現が用いられていると、 LC_COLLATE の影響を受けることになります。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP LC_CTYPE .\"O This variable affects the treatment of character classes used in .\"O regular expressions and also with .\"O the .\"O .B \-name .\"O test, if the system's .\"O .BR fnmatch (3) .\"O library function supports this. This variable also affects the .\"O interpretation of any character classes in the regular expressions .\"O used to interpret the response to the prompt issued by .\"O .BR \-ok . .\"O The `LC_CTYPE' environment variable will .\"O also affect which characters are considered to be unprintable when .\"O filenames are printed; see the section UNUSUAL FILENAMES. .IP LC_CTYPE システムの fnmatch(3) ライブラリ関数がこの環境変数をサポートしている場合、 この環境変数は、 正規表現で使用される文字クラスと、 \fB\-name\fP テストで使われる文字クラスの扱い方に影響を及ぼします。アクション \fB\-ok\fP のプロンプトにおけるユーザー入力値の解釈には、 正規表現が用いられますが、 この変数は、 その正規表現内の文字クラスの判断に影響します。 環境変数 LC_CTYPE は、 ファイル名の表示時に、 表示できない文字を判断する処理に影響します。 「普通ではないファイル名」のセクションを参照してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP LC_MESSAGES .\"O Determines the locale to be used for internationalised messages. If .\"O the `POSIXLY_CORRECT' environment variable is set, this also .\"O determines the interpretation of the response to the prompt made by the .\"O .B \-ok .\"O action. .IP LC_MESSAGES 国際化されたメッセージで使用するロケールを設定します。 環境変数 `POSIXLY_CORRECT' が設定されている場合は、 この変数によって、 アクション \fB\-ok\fP のプロンプト入力値に対する解釈が決定します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP NLSPATH .\"O Determines the location of the internationalisation message catalogues. .IP NLSPATH 国際化メッセージカタログを置く場所を設定します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP PATH .\"O Affects the directories which are searched to find the executables .\"O invoked by .\"O .BR \-exec , .\"O .BR \-execdir , .\"O .B \-ok .\"O and .\"O .BR \-okdir . .IP PATH \fB\-exec\fP, \fB\-execdir\fP, \fB\-ok\fP, \fB\-okdir\fP から呼び出される実行ファイルが、 どこにあるかを検索するディレクトリに影響します。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP POSIXLY_CORRECT .\"O Determines the block size used by .\"O .B \-ls .\"O and .\"O .BR \-fls . .\"O If .\"O .B POSIXLY_CORRECT .\"O is set, blocks are units of 512 bytes. Otherwise they are units of 1024 bytes. .IP POSIXLY_CORRECT \fB\-ls\fP や \fB\-fls\fP が使用するブロックサイズを決定します。 \fBPOSIXLY_CORRECT\fP が設定されている場合は、 1 ブロックが 512 バイト、 設定されていない場合は、 1 ブロックが 1024 バイトになります。 .\"O ---------------------------------------- .\"O .IP .\"O Setting this variable also turns off .\"O warning messages (that is, implies .\"O .BR \-nowarn ) .\"O by default, because POSIX requires that apart from .\"O the output for .\"O .BR \-ok , .\"O all messages printed on stderr are diagnostics and must result in a .\"O non-zero exit status. .IP またこの変数を設定すると、 デフォルトで警告メッセージを出力しません (つまり \fB\-nowarn\fP が暗に指定されます)。 なぜなら POSIX の規定では、 \fB\-ok\fP のプロンプトを除くと、 標準エラーに出力されるメッセージは、 すべて診断情報であり、 終了ステータスは 0 以外を返さなければならないからです。 .\"O ---------------------------------------- .\"O .IP .\"O When POSIXLY_CORRECT is not set, .\"O .B "\-perm \fI+zzz\fR" .\"O is treated just like .\"O .B "\-perm \fI/zzz\fR" .\"O if .\"O \fI+zzz\fR is not a valid symbolic mode. When POSIXLY_CORRECT is set, such .\"O constructs are treated as an error. .IP POSIXLY_CORRECT が設定されていない場合、 \fI+zzz\fP が適正なシンボリックモード表現でなかったら、 \fB\-perm \fP\fI+zzz\fP という記述は、 \fB\-perm\fP \fI/zzz\fP として扱われます。 POSIXLY_CORRECT が設定されている場合、 この記述はエラーになります。 .\"O ---------------------------------------- .\"O .IP .\"O When POSIXLY_CORRECT is set, the response to the prompt made by the .\"O .B \-ok .\"O action is interpreted according to the system's message catalogue, as .\"O opposed to according to .\"O .BR find 's .\"O own message translations. .IP POSIXLY_CORRECT が設定されていると、 アクション \fB\-ok\fP のプロンプトに対する入力値の解釈は、 \fBfind\fP の持つメッセージ翻訳を用いるのではなく、 システムのメッセージカタログに従って行われます。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .IP TZ .\"O Affects the time zone used for some of the time-related format .\"O directives of .\"O .B \-printf .\"O and .\"O .BR \-fprintf . .\"O . .IP TZ タイムゾーンに影響します。 タイムゾーンは、 \fB\-printf\fP や \fB\-fprintf\fP の時間関連ディレクティブにおいて利用されます。 . .\"O ---------------------------------------- .\"O .SH "EXAMPLES" .SH 例 .\"O ---------------------------------------- .\"O .SS Simple `find|xargs` approach .SS "単純な `find|xargs` のアプローチ" .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Find files named .\"O .I core .\"O in or below the directory .\"O .I /tmp .\"O and delete them. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find /tmp \-name core \-type f \-print | xargs /bin/rm \-f .\"O .in .\"O \& .\"O .fi .\"O Note that this will work incorrectly if there are .\"O any filenames containing newlines, single or double quotes, or spaces. .\"O . .IP \[bu] \fI/tmp\fP ディレクトリ以下にある、 \fIcore\fP という名前のファイルを探して、 それを削除します。 .nf \& .in +4m \fB$ find /tmp \-name core \-type f \-print | xargs /bin/rm \-f\fP .in \& .fi ただし、 ファイル名の中に、 改行、 シングルクォート、 ダブルクォート、 空白文字が含まれる場合には、 このコマンドは正しく動作しません。 . .\"O ---------------------------------------- .\"O .SS Safer `find -print0 | xargs -0` approach .SS "安全な `find \-print0 | xargs \-0` によるアプローチ" .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Find files named \fIcore\fP in or below the directory \fI/tmp\fP .\"O and delete them, processing filenames in such a way that file or .\"O directory names containing single or double quotes, spaces or newlines .\"O are correctly handled. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find /tmp \-name core \-type f \-print0 | xargs \-0 /bin/rm \-f .\"O .in .\"O \& .\"O .fi .\"O The .\"O .B \-name .\"O test comes before the .\"O .B \-type .\"O test in order to avoid having to call .\"O .B stat(2) .\"O on every file. .IP \[bu] \fI/tmp\fP ディレクトリ以下にある、 \fIcore\fP という名前のファイルを探して、 それを削除します。 ファイルやディレクトリの名前に、 シングルクォート、 ダブルクォート、 空白、 改行などが含まれていても、 適切に処理されます。 .nf \& .in +4m \fB$ find /tmp \-name core \-type f \-print0 | xargs \-0 /bin/rm \-f\fP .in \& .fi テスト \fB\-name\fP は、 \fB\-type\fP よりも前に置いています。 これは、 \fBstat(2)\fP の呼び出しが、 すべてのファイルに対して行われることを防ぐためです。 .\"O ---------------------------------------- .\"O .PP .\"O Note that there is still a race between the time .\"O .B find .\"O traverses the hierarchy printing the matching filenames, and the time the .\"O process executed by .\"O .B xargs .\"O works with that file. .PP ただし、 \fBfind\fP がファイルシステム内を検索して、 一致するファイルを出力する時間と、 \fBxargs\fP によるコマンド起動がそのファイルを処理する時間との間では、 まだ競合が発生する点に注意してください。 .\"O ---------------------------------------- .\"O ---------------------------------------- .\"O .SS .\"O Executing a command for each file .SS 各ファイルに対するコマンド実行 .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Run .\"O .I file .\"O on every file in or below the current directory. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . \-type f \-exec file \(aq{}\(aq \e; .\"O .in .\"O \& .\"O .fi .\"O Notice that the braces are enclosed in single quote marks to protect them .\"O from interpretation as shell script punctuation. The semicolon is .\"O similarly protected by the use of a backslash, though single quotes .\"O could have been used in that case also. .IP \[bu] カレントディレクトリ以下の各ファイルに対して \fIfile\fP を実行します。 .nf \& .in +4m \fB$ find . \-type f \-exec file \(aq{}\(aq \e;\fP .in \& .fi 波カッコをシングルクォートで囲んでいる点に注意してください。 これは、 句読点がシェルスクリプトの記号として、 解釈されないようにするためです。 同様のこととして、 セミコロンもバックスラッシュを使ってエスケープしています。 シングルクォートを使うのでもかまいません。 .\"O ---------------------------------------- .\"O .PP .\"O In many cases, one might prefer the .\"O .B `\-exec\ \&...\&\ +` .\"O or better the .\"O .B `\-execdir\ \&...\&\ +` .\"O syntax for performance and security reasons. .\"O . .PP 性能やセキュリティのことを考慮すると、 \fB`\-exec\ \&...\&\ +`\fP という記述が望まれるケースが多いかもしれません。 . .\"O ---------------------------------------- .\"O .SS Traversing the filesystem just once - for 2 different actions .SS "異なる 2 つのアクション、 ファイルシステム検索は 1 回" .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Traverse the filesystem just once, listing set-user-ID files and .\"O directories into .\"O .I /root/suid.txt .\"O and large files into .\"O .IR /root/big.txt . .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find / \e .\"O .in +4m .\"O .B \e( \-perm \-4000 \-fprintf /root/suid.txt \(aq%#m %u %p\en\(aq \e) , \e .\"O .br .\"O .B \e( \-size +100M \-fprintf /root/big.txt \(aq%\-10s %p\en\(aq \e) .\"O .in -4m .\"O .in -4m .\"O \& .\"O .fi .\"O This example uses the line-continuation character \(aq\e\(aq on the first two .\"O lines to instruct the shell to continue reading the command on the next line. .\"O . .IP \[bu] ファイルシステムを検索するのは 1 回だけにして、 setuid ビットが立っているファイルやディレクトリの一覧は \fB/root/suid.txt\fP に出力し、 サイズが大きいファイルの一覧は \fB/root/big.txt\fP に出力するようにします。 .nf \& .in +4m \fB$ find / \e\fP .in +4m \fB\e( \-perm \-4000 \-fprintf /root/suid.txt \(aq%#m %u %p\en\(aq \e) , \e\fP .br \fB\e( \-size +100M \-fprintf /root/big.txt \(aq%\-10s %p\en\(aq \e)\fP .in -4m .in -4m \& .fi この例では、 初めの 2 つの行に対して、 行継続文字 \(aq\e\(aq を用いています。 シェルがコマンド読み込みを行うにあたって、 次の行も継続して読み込むように指示しています。 . .\"O ---------------------------------------- .\"O .SS .\"O Searching files by age .SS 期間の指定を使ったファイル検索 .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files in your home directory which have been modified in .\"O the last twenty-four hours. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find $HOME \-mtime 0 .\"O .in .\"O \& .\"O .fi .\"O This command works this way because the .\"O time since each file was last modified is divided by 24 hours and any .\"O remainder is discarded. That means that to match .\"O .B \-mtime .\"O .BR 0 , .\"O a file will have to have a modification in the past which is less than .\"O 24 hours ago. .\"O . .IP \[bu] ホームディレクトリ内のファイルの中から、 修正時間が 24 時間未満のファイルを検索します。 .nf \& .in +4m \fB$ find $HOME \-mtime 0\fP .in \& .fi このコマンドがそういう動作になるのは、 各ファイルの最終更新時間が、 24 時間単位で割られて、 余りは捨てられるからです。 つまり、 ファイルが \fB\-mtime 0\fP に一致するのは、 過去 24 時間未満の間に更新されていることを表します。 . .\"O ---------------------------------------- .\"O .SS .\"O Searching files by permissions .SS 許可属性を使ったファイル検索 .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files which are executable but not readable. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find /sbin /usr/sbin \-executable \e! \-readable \-print .\"O .in .\"O \& .\"O .fi .\"O . .IP \[bu] 実行可能であり、 読み出し不能なファイルを探します。 .nf \& .in +4m \fB$ find /sbin /usr/sbin \-executable \e! \-readable \-print\fP .in \& .fi . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files which have read and write permission for their owner, .\"O and group, but which other users can read but not write to. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . \-perm 664 .\"O .in .\"O \& .\"O .fi .\"O Files which meet these criteria but have other permissions bits set .\"O (for example if someone can execute the file) will not be matched. .\"O . .IP \[bu] ファイルの所有者とグループが読み書き可能であって、 他ユーザーは、 読み込みのみで書き込み不可であるファイルを探します。 .nf \& .in +4m \fB$ find . \-perm 664\fP .in \& .fi 上に示す条件を満たすファイルであっても、 さらに別の許可属性ビットも立っているようなファイル (たとえば、 他ユーザーが実行できるなど) は、 この条件に一致しません。 . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files which have read and write permission for their owner .\"O and group, and which other users can read, without regard to the .\"O presence of any extra permission bits (for example the executable .\"O bit). .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . \-perm \-664 .\"O .in .\"O \& .\"O .fi .\"O This will match a file which has mode .\"O .IR 0777 , .\"O for example. .\"O . .IP \[bu] ファイルの所有者とグループが読み書き可能であり、 他ユーザーも読み込みが可能であるようなファイルを探します。 それ以外の許可属性ビット (たとえば実行ビット) が立っていてもかまいません。 .nf \& .in +4m \fB$ find . \-perm \-664\fP .in \& .fi したがって上は、 たとえばモードが \fI0777\fP であるようなファイルにも一致します。 . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files which are writable by somebody (their owner, or .\"O their group, or anybody else). .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . \-perm /222 .\"O .in .\"O \& .\"O .fi .\"O . .IP \[bu] (ファイルの所有者、 グループ、 他ユーザーの誰でも良いから) 書き込み可能なファイルを探します .nf \& .in +4m \fB$ find . \-perm /222\fP .in \& .fi . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files which are writable by either their owner or their group. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . \-perm /220 .\"O .B $ find . \-perm /u+w,g+w .\"O .B $ find . \-perm /u=w,g=w .\"O .in .\"O \& .\"O .fi .\"O All three of these commands do the same thing, but the first one uses .\"O the octal representation of the file mode, and the other two use the .\"O symbolic form. .\"O The files don't have to be writable by both the owner and group to be matched; .\"O either will do. .\"O . .IP \[bu] ファイルの所有者あるいはグループのいずれかが、 書き込み可能なファイルを探します。 .nf \& .in +4m \fB$ find . \-perm /220\fP \fB$ find . \-perm /u+w,g+w\fP \fB$ find . \-perm /u=w,g=w\fP .in \& .fi 上のコマンドは 3 つとも同じ動作をします。 1 つめは、 ファイルの許可属性を 8 進数で表しています。 残りの 2 つは、 シンボルによる表現形式を利用しています。 ファイルが一致する際には、 所有者とグループの両方が書き込み可能である必要はなく、 どちらか一方が満たされれば一致します。 . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files which are writable by both their owner and their group. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . \-perm \-220 .\"O .B $ find . \-perm \-g+w,u+w .\"O .in .\"O \& .\"O .fi .\"O Both these commands do the same thing. .\"O . .IP \[bu] ファイルの所有者あるいはグループが、 ともに書き込み可能であるようなファイルを探します。 .nf \& .in +4m \fB$ find . \-perm \-220\fP \fB$ find . \-perm \-g+w,u+w\fP .in \& .fi 上のコマンドは同じ処理を行ないます。 . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O A more elaborate search on permissions. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . \-perm \-444 \-perm /222 \e! \-perm /111 .\"O .B $ find . \-perm \-a+r \-perm /a+w \e! \-perm /a+x .\"O .in .\"O \& .\"O .fi .\"O These two commands both search for files that are readable for everybody .\"O .RB ( "\-perm \-444" .\"O or .\"O .BR "\-perm \-a+r" ), .\"O have at least one write bit .\"O set .\"O .RB ( "\-perm /222" .\"O or .\"O .BR "\-perm /a+w" ) .\"O but are not executable for anybody .\"O .RB ( "! \-perm /111" .\"O or .\"O .B ! \-perm /a+x .\"O respectively). .\"O . .IP \[bu] 権限に関して、 さらに複雑な検索を以下に示します。 .nf \& .in +4m \fB$ find . \-perm \-444 \-perm /222 \e! \-perm /111\fP \fB$ find . \-perm \-a+r \-perm /a+w \e! \-perm /a+x\fP .in \& .fi この 2 つのコマンドは、 両方とも次のような条件のファイルを探します。 つまり、 誰にでも読み出すことが可能 (\fB\-perm \-444\fP または \fB\-perm \-a+r\fP) であって、 書き込み許可ビットが少なくとも 1 つは立っているもの (\fB\-perm /222\fP または \fB\-perm /a+w\fP)、 ただし誰にも実行ができないもの (\fB! \-perm /111\fP や \fB! \-perm /a+x\fP)、 というものです。 . .\"O ---------------------------------------- .\"O .SS .\"O Pruning - omitting files and subdirectories .SS "除外 \- ファイルやサブディレクトリの除き方" .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Copy the contents of .\"O .I /source-dir .\"O to .\"O .IR /dest-dir , .\"O but omit files and directories named .\"O .I .snapshot .\"O (and anything in them). It also omits files or directories whose name .\"O ends in .\"O .IR '\(ti' , .\"O but not their contents. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ cd /source-dir .\"O .B $ find . \-name .snapshot \-prune \-o \e( \e! \-name \(aq*~\(aq \-print0 \e) \e .\"O .br .\"O .in +4m .\"O .B | cpio \-pmd0 /dest-dir .\"O .in -4m .\"O .in -4m .\"O \& .\"O .fi .\"O The construct .\"O .B \-prune\ \-o\ \e(\ \&...\&\ \-print0\ \e) .\"O is quite common. The idea here is that the expression before .\"O .B \-prune .\"O matches things which are to be pruned. However, the .\"O .B \-prune .\"O action itself returns true, so the following .\"O .B \-o .\"O ensures that the right hand side is evaluated only for those .\"O directories which didn't get pruned (the contents of the pruned .\"O directories are not even visited, so their contents are irrelevant). .\"O The expression on the right hand side of the .\"O .B \-o .\"O is in parentheses only for clarity. It emphasises that the .\"O .B \-print0 .\"O action takes place only for things that didn't have .\"O .B \-prune .\"O applied to them. Because the default `and' condition between tests .\"O binds more tightly than .\"O .BR \-o , .\"O this is the default anyway, but the parentheses help to show .\"O what is going on. .\"O . .IP \[bu] \fI/source\-dir\fP の内容を \fI/dest\-dir\fP にコピーします。 ただし \fI.snapshot\fP という名前のファイル、 またはディレクトリ (その中身) は除きます。 さらに、 名前が \fI'\(ti'\fP で終わるファイル、 またはディレクトリも除きますが、 その中身までは除きません。 .nf \& .in +4m \fB$ cd /source\-dir\fP \fB$ find . \-name .snapshot \-prune \-o \e( \e! \-name \(aq*~\(aq \-print0 \e) \e\fP .br .in +4m \fB| cpio \-pmd0 /dest\-dir\fP .in -4m .in -4m \& .fi \fB\-prune \-o \e( \&...\& \-print0 \e)\fP という形は、 ごく普通に利用されます。 考え方としては、 \fB\-prune\fP の前にある式が、 取り除く対象になるということです。 アクション \fB\-prune\fP 自体は、 返り値として true を返します。 したがって、 直後に \fB\-o\fP があるおかげで、 取り除き (prune) の対象にならなかったディレクトリが、 \fB\-o\fP の右辺によって評価されることになります (取り除きの対象になったディレクトリの中身は、 処理の対象になっていないので、 中身を考慮する必要はありません)。 \fB\-o\fP の右辺の式をカッコで囲んでいるのは、 わかりやすくするためです。 このように記述することで、 アクション \fB\-print0\fP の処理対象が、 \fB\-prune\fP の処理対象以外あることが、 はっきりします。 テストとテストの間にある `and' 条件は、 \fB\-o\fP よりも強く結びつくものであって、 それがデフォルトになっていますが、 カッコで囲めば、 どのように処理されるかがよくわかります。 . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Given the following directory of projects and their associated SCM .\"O administrative directories, perform an efficient search for the .\"O projects' roots: .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find repo/ \e .\"O .in +4m .\"O .B \e( \-exec test \-d \(aq{}/.svn\(aq \e; \e .\"O .B \-or \-exec test \-d \(aq{}/.git\(aq \e; \e .\"O .B \-or \-exec test \-d \(aq{}/CVS\(aq \e; \e .\"O .B \e) \-print \-prune .\"O .in -4m .\"O .in -4m .\"O \& .\"O .fi .\"O Sample output: .\"O .nf .\"O \& .\"O .in +4m .\"O .B repo/project1/CVS .\"O .B repo/gnu/project2/.svn .\"O .B repo/gnu/project3/.svn .\"O .B repo/gnu/project3/src/.svn .\"O .B repo/project4/.git .\"O .in .\"O \& .\"O .fi .\"O In this example, .\"O .B \-prune .\"O prevents unnecessary descent into directories that have already been .\"O discovered (for example we do not search .\"O .I project3/src .\"O because we already found .\"O .IR project3/.svn ), .\"O but ensures sibling directories .\"O .RI ( project2 .\"O and .\"O .IR project3 ) .\"O are found. .\"O . .IP \[bu] 以下に示されるようなプロジェクトディレクトリがあって、 さらに、 関連する SCM の管理ディレクトリがあるとします。 これに対して、 プロジェクトルートから効率の良い検索を行います。 .nf \& .in +4m \fB$ find repo/ \e\fP .in +4m \fB\e( \-exec test \-d \(aq{}/.svn\(aq \e; \e\fP \fB\-or \-exec test \-d \(aq{}/.git\(aq \e; \e\fP \fB\-or \-exec test \-d \(aq{}/CVS\(aq \e; \e\fP \fB\e) \-print \-prune\fP .in -4m .in -4m \& .fi 出力例: .nf \& .in +4m \fBrepo/project1/CVS\fP \fBrepo/gnu/project2/.svn\fP \fBrepo/gnu/project3/.svn\fP \fBrepo/gnu/project3/src/.svn\fP \fBrepo/project4/.git\fP .in \& .fi この例では、 \fB\-prune\fP を指定することによって、 すでに対象が見つかったディレクトリの配下は、 それ以上の検索が不要なので、 検索を行わないようにしています (たとえば \fIproject3/src\fP は検索されません。 その理由は \fIproject3/.svn\fP が、 すでに見つかっているからです)。 しかし、 となり合わせのディレクトリ (たとえば、 \fIproject2\fP と \fIproject3\fP) は、 確実に検索されます。 . .\"O ---------------------------------------- .\"O .SS .\"O Other useful examples .SS この他の利用例 .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for several file types. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find /tmp \-type f,d,l .\"O .in .\"O \& .\"O .fi .\"O Search for files, directories, and symbolic links in the directory .\"O .I /tmp .\"O passing these types as a comma-separated list (GNU extension), .\"O which is otherwise equivalent to the longer, yet more portable: .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find /tmp \e( \-type f \-o \-type d \-o \-type l \e) .\"O .in .\"O \& .\"O .fi .\"O . .IP \[bu] 複数のファイルタイプを検索します。 .nf \& .in +4m \fB$ find /tmp \-type f,d,l\fP .in \& .fi ファイルタイプとして、 カンマ区切りのリスト (GNU 拡張) を指定して、 それぞれファイル、 ディレクトリ、 シンボリックリンクを \fI/tmp\fP ディレクトリの中から検索します。 同じことは、 やや長くなりますが、 移植性の高い記述として、 以下のようにしても同じです。 .nf \& .in +4m \fB$ find /tmp \e( \-type f \-o \-type d \-o \-type l \e)\fP .in \& .fi . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Search for files with the particular name .\"O .I needle .\"O and stop immediately when we find the first one. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find / -name needle -print -quit .\"O .in .\"O \& .\"O .fi .\"O . .IP \[bu] 特定の名前 \fIneedle\fP を持ったファイルを検索して、 最初にそれが見つかった時点で、 すぐに終了するようにします。 .nf \& .in +4m \fB$ find / \-name needle \-print \-quit\fP .in \& .fi . .\"O ---------------------------------------- .\"O .IP \[bu] .\"O Demonstrate the interpretation of the .\"O .B %f .\"O and .\"O .B %h .\"O format directives of the .\"O .B \-printf .\"O action for some corner-cases. .\"O Here is an example including some output. .\"O .nf .\"O \& .\"O .in +4m .\"O .B $ find . .. / /tmp /tmp/TRACE compile compile/64/tests/find -maxdepth 0 -printf '[%h][%f]\en' .\"O .B [.][.] .\"O .B [.][..] .\"O .B [][/] .\"O .B [][tmp] .\"O .B [/tmp][TRACE] .\"O .B [.][compile] .\"O .B [compile/64/tests][find] .\"O .in .\"O \& .\"O .fi .\"O . .IP \[bu] \fB\-printf\fP アクションの書式ディレクティブ \fB%f\fP と \fB%h\fP が、 境界条件において、 どのように解釈されるかを示します。 .nf \& .in +4m \fB$ find . .. / /tmp /tmp/TRACE compile compile/64/tests/find \-maxdepth 0 \-printf '[%h][%f]\en'\fP \fB[.][.]\fP \fB[.][..]\fP \fB[][/]\fP \fB[][tmp]\fP \fB[/tmp][TRACE]\fP \fB[.][compile]\fP \fB[compile/64/tests][find]\fP .in \& .fi . .\"O ---------------------------------------- .\"O .SH EXIT STATUS .\"O .B find .\"O exits with status 0 if all files are processed successfully, greater .\"O than 0 if errors occur. .\"O This is deliberately a very broad description, .\"O but if the return value is non-zero, .\"O you should not rely on the correctness of the results of .\"O .BR find . .SH 終了ステータス \fBfind\fP は、 すべてのファイルを正常に処理できれば、 ステータス 0 で終了します。 エラーが起きた場合は、 1 以上を返します。 ここでは、 わざと大まかな説明としていますが、 返り値が 0 以外だった場合、 \fBfind\fP の結果は正しいと思わないでください。 .\"O ---------------------------------------- .\"O .\"O When some error occurs, .\"O .B find .\"O may stop immediately, without completing all the actions specified. .\"O For example, some starting points may not have been examined or some .\"O pending program invocations for .\"O .B \-exec\ \&...\&\ {}\ + .\"O or .\"O .B "\-execdir\ \&...\&\ {}\ + .\"O may not have been performed. .\"O . エラーが発生した場合、 \fBfind\fP は、 指定されたアクションを完了しないまま、 その場で終了することがあります。 たとえば、 検索開始ポイントの中には、 検索されずに終わるものもあります。 あるいは \fB\-exec\ \&...\&\ {}\ +\fP や \fB\-execdir\ \&...\&\ {}\ +\fP において、 まだ呼び出しが行われていないプログラムが、 実行されないまま終了することもあります。 . .\"O ---------------------------------------- .\"O .SH "HISTORY" .\"O As of findutils-4.2.2, shell metacharacters (`*', `?' or `[]' for .\"O example) used in filename patterns match a leading `.', because .\"O IEEE POSIX interpretation 126 requires this. .SH 履歴 findutils\-4.2.2 以降、 ファイル名のパターンに使われるシェルのメタ文字 (`*', `?', `[]' など) は、 先頭の `.' に一致します。 これは IEEE POSIX interpretation 126 が要求しているためです。 .\"O ---------------------------------------- .\"O .P .\"O As of findutils-4.3.3, .\"O .B \-perm\ /000 .\"O now matches all files instead of none. .P findutils\-4.3.3 以降 \fB\-perm\ /000\fP は、 どんなファイルにも一致しない、 ではなく、 すべてのファイルに一致する、 になりました。 .\"O ---------------------------------------- .\"O .P .\"O Nanosecond-resolution .\"O timestamps were implemented in findutils-4.3.3. .P ナノ秒まで表現するタイムスタンプは、 findutils\-4.3.3 で実装されました。 .\"O ---------------------------------------- .\"O .P .\"O As of findutils-4.3.11, the .\"O .B \-delete .\"O action sets .\"O .BR find 's .\"O exit status to a nonzero value when it fails. .\"O However, .\"O .B find .\"O will not exit immediately. Previously, .\"O .BR find 's .\"O exit status was unaffected by the failure of .\"O .BR \-delete . .\"O .TS .\"O l l l . .\"O Feature Added in Also occurs in .\"O \-newerXY 4.3.3 BSD .\"O \-D 4.3.1 .\"O \-O 4.3.1 .\"O \-readable 4.3.0 .\"O \-writable 4.3.0 .\"O \-executable 4.3.0 .\"O \-regextype 4.2.24 .\"O \-exec ... + 4.2.12 POSIX .\"O \-execdir 4.2.12 BSD .\"O \-okdir 4.2.12 .\"O \-samefile 4.2.11 .\"O \-H 4.2.5 POSIX .\"O \-L 4.2.5 POSIX .\"O \-P 4.2.5 BSD .\"O \-delete 4.2.3 .\"O \-quit 4.2.3 .\"O \-d 4.2.3 BSD .\"O \-wholename 4.2.0 .\"O \-iwholename 4.2.0 .\"O \-ignore_readdir_race 4.2.0 .\"O \-fls 4.0 .\"O \-ilname 3.8 .\"O \-iname 3.8 .\"O \-ipath 3.8 .\"O \-iregex 3.8 .\"O .TE .P findutils\-4.3.11 以降、 アクション \fB\-delete\fP の処理に失敗すると、 \fBfind\fP の終了ステータスは 0 以外の値になります。 ただし、 \fBfind\fP は、 その場ですぐには終了しません。 以前のバージョンでは、 \fB\-delete\fP の処理が失敗しても、 \fBfind\fP の終了ステータスとは無関係でした。 .TS l l l . 機能 追加時期 他システムの対応 \-newerXY 4.3.3 BSD \-D 4.3.1 \-O 4.3.1 \-readable 4.3.0 \-writable 4.3.0 \-executable 4.3.0 \-regextype 4.2.24 \-exec ... + 4.2.12 POSIX \-execdir 4.2.12 BSD \-okdir 4.2.12 \-samefile 4.2.11 \-H 4.2.5 POSIX \-L 4.2.5 POSIX \-P 4.2.5 BSD \-delete 4.2.3 \-quit 4.2.3 \-d 4.2.3 BSD \-wholename 4.2.0 \-iwholename 4.2.0 \-ignore_readdir_race 4.2.0 \-fls 4.0 \-ilname 3.8 \-iname 3.8 \-ipath 3.8 \-iregex 3.8 .TE .\"O ---------------------------------------- .\"O .P .\"O The syntax .\"O \.B \-perm +MODE .\"O was removed in findutils-4.5.12, in favour of .\"O \.B \-perm .\"O .BR /MODE . .\"O The .\"O .B +MODE .\"O syntax had been deprecated since findutils-4.2.21 .\"O which was released in 2005. .\"O . .P \fB\-perm +MODE\fP という文法は、 findutils\-4.5.12 において削除されました。 代わりに、 \fB\-perm /MODE\fP を使用してください。 \fB+MODE\fP という文法は、 2005 年にリリースされた findutils\-4.2.21 以降、 非推奨となっています。 . .\"O ---------------------------------------- .\"O .SH "NON-BUGS" .SH バグではないもの .\"O ---------------------------------------- .\"O .SS Operator precedence surprises .\"O The command .\"O .B find . \-name afile \-o \-name bfile \-print .\"O will never print .\"O .I afile .\"O because this is actually equivalent to .\"O .BR "find . \-name afile \-o \e( \-name bfile \-a \-print \e)" . .\"O Remember that the precedence of .\"O .B \-a .\"O is higher than that of .\"O .B \-o .\"O and when there is no operator specified between tests, .\"O .B \-a .\"O is assumed. .SS 意外なオペレーター優先順位 以下のようなコマンド \fBfind . \-name afile \-o \-name bfile \-print\fP は、 \fIafile\fP を出力しません。 なぜなら実際には \fBfind . \-name afile \-o \e( \-name bfile \-a \-print \e)\fP と同じものだからです。 \fB\-a\fP の優先順位は \fB\-o\fP よりも高いことを忘れないでください。 またテストとテストの間に、 オペレーターが指定されていないければ、 \fB\-a\fP であるとみなされる点も注意してください。 .\"O ---------------------------------------- .\"O .SS \(lqpaths must precede expression\(rq error message .\"O .nf .\"O .B $ find . \-name *.c \-print .\"O find: paths must precede expression .\"O find: possible unquoted pattern after predicate `-name'? .\"O .fi .SS "エラーメッセージ \(lqpaths must precede expression\(rq" .nf \fB$ find . \-name *.c \-print\fP find: paths must precede expression find: possible unquoted pattern after predicate `\-name'? .fi .\"O ---------------------------------------- .\"O .P .\"O This happens when the shell could expand the pattern .\"O .I *.c .\"O to more than one file name existing in the current directory, .\"O and passing the resulting file names in the command line to .\"O .B find .\"O like this: .\"O .nf .\"O . .\"O .B find . \-name frcode.c locate.c word_io.c \-print .\"O . .\"O .fi .\"O That command is of course not going to work, because the .\"O .B \-name .\"O predicate allows exactly only one pattern as argument. Instead of doing things .\"O this way, you should enclose the pattern in quotes or escape the wildcard, thus .\"O allowing .\"O .B find .\"O to use the pattern with the wildcard during the search for file name matching .\"O instead of file names expanded by the parent shell: .\"O .nf .\"O .B $ find . \-name \(aq*.c\(aq \-print .\"O .B $ find . \-name \e*.c \-print .\"O .fi .\"O . .P \fI*.c\fP というパターンをシェルが展開した際に、 カレントディレクトリの複数ファイルに該当した場合に、 このエラーが発生します。 この場合には、 対象となったファイル名が、 \fBfind\fP におけるコマンドライン上に、 以下のように受け渡されることになります。 .nf . \fBfind . \-name frcode.c locate.c word_io.c \-print\fP . .fi 上のコマンドは、 もちろん動作しません。 述語表現である \fB\-name\fP の引数は、 パターンを 1 つしか受けつけないからです。 そのような記述とするのではなく、 パターンの表現部分は、 クォートでくくるか、 ワイルドカードをエスケープしてください。 以下のようにすることで、 ファイル名がシェルによって展開されることなく、 \fBfind\fP のファイル名の一致検索の際に、 ワイルドカードを用いたパターン検索ができるようになります。 .nf \fB$ find . \-name \(aq*.c\(aq \-print\fP \fB$ find . \-name \e*.c \-print\fP .fi . .\"O ---------------------------------------- .\"O .SH "BUGS" .\"O There are security problems inherent in the behaviour that the POSIX .\"O standard specifies for .\"O .BR find , .\"O which therefore cannot be fixed. For example, the .\"O .B \-exec .\"O action is .\"O inherently insecure, and .\"O .B \-execdir .\"O should be used instead. .\"O . .SH バグ POSIX が規定する \fBfind\fP の動作には、 セキュリティ上の問題があって、 これを修正することはできません。 たとえば、 アクション \fB\-exec\fP は、 本質的に安全ではないため。 代わりに \fB\-execdir\fP を使ってください。 . .\"O ---------------------------------------- .\"O .P .\"O The environment variable .\"O .B LC_COLLATE .\"O has no effect on the .\"O .B \-ok .\"O action. .\"O . .P 環境変数 \fBLC_COLLATE\fP は、 アクション \fB\-ok\fP に対しては、 何の効果も及ぼしません。 . .\"O ---------------------------------------- .\"O .SH "REPORTING BUGS" .\"O GNU findutils online help: .\"O .br .\"O Report any translation bugs to .SH バグ報告 GNU findutils オンラインヘルプ: .br 翻訳に関するバグ報告 .\"O ---------------------------------------- .\"O .PP .\"O Report any other issue via the form at the GNU Savannah bug tracker: .PP その他の問題について GNU Savannah バグトラッカー経由での報告: .\"O ---------------------------------------- .\"O .RS .\"O .RS .\"O ---------------------------------------- .\"O .RE .\"O General topics about the GNU findutils package are discussed at the .\"O .I bug\-findutils .\"O mailing list: .RE GNU findutils パッケージのメーリングリスト \fIbug\-findutils\fP において議論されている全般的なトピック: .\"O ---------------------------------------- .\"O .RS .\"O .RS .\"O ---------------------------------------- .\"O .RE .\"O . .RE . .\"O ---------------------------------------- .\"O .SH COPYRIGHT .\"O Copyright \(co 1990-2021 Free Software Foundation, Inc. .\"O License GPLv3+: GNU GPL version 3 or later . .\"O .br .\"O This is free software: you are free to change and redistribute it. .\"O There is NO WARRANTY, to the extent permitted by law. .\"O . .SH 著作権 Copyright \(co 1990\-2021 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later . .br This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. . .\"O ---------------------------------------- .\"O .SH "SEE ALSO" .\"O .BR chmod (1), .\"O .BR locate (1), .\"O .BR ls (1), .\"O .BR updatedb (1), .\"O .BR xargs (1), .\"O .BR lstat (2), .\"O .BR stat (2), .\"O .BR ctime (3) .\"O .BR fnmatch (3), .\"O .BR printf (3), .\"O .BR strftime (3), .\"O .BR locatedb (5), .\"O .BR regex (7) .SH 関連項目 \fBchmod\fP(1), \fBlocate\fP(1), \fBls\fP(1), \fBupdatedb\fP(1), \fBxargs\fP(1), \fBlstat\fP(2), \fBstat\fP(2), \fBctime\fP(3) \fBfnmatch\fP(3), \fBprintf\fP(3), \fBstrftime\fP(3), \fBlocatedb\fP(5), \fBregex\fP(7) .\"O ---------------------------------------- .\"O .PP .\"O Full documentation .\"O .br .\"O or available locally via: .\"O .B info find .PP 完全なドキュメント .br またローカルにおいては \fBinfo find\fP により参照できます。 .\"O ----------------------------------------