-name '*.txt' -exec touch {} ';' ( と) も同様にシェルのメタ文字なので、文字列として渡すには '(' や')' と書かないといけないのですが \( や\) でも構いません。個人的にはシェル特有のエスケープを使った書き方よりも、多くの言語で一般的なクォートを使うほうがわかりや...
$ find -P /usr/bin/ -name 'apt*' -print コマンドの後にオプションが来るのはlsコマンドなどの一般的なコマンドと一緒だが、オプションの位置に指定できるものは限られており、あまり頻繁には使わないものが多い。よく使う-nameなどは式なので、これらの検索条件は検索するパスの後ろ...
GNU find searches the directory tree rooted at each given file name by evaluating the given expression from left to right, according to the rules of precedence (see section OPERA- TORS), until the outcome is known (the left hand side is false for and operations, true for or), at which...
name が Joe の最初のドキュメントを検索して、その age フィールドを値 6 で更新します。 db.mycollection.findAndModify({query : {name : "Joe"}, update : {$set : {age : 6}}}) 出力例を以下に示します。 { "lastErrorObject": { "updatedExisting":true, "n":1, "err": null ,...
–name と似ていますが、パターンと現在のファイル名のベース名との照合で、大文字と小文字は区別されません (「使用例」を参照してください)。–name オプションとは異なり、先頭のピリオドは特別に扱われず、/usr/bin/find と/usr/xpg4/bin/find の両方で、ワイルドカードファイル名生成...
functionfind{param([parameter(Mandatory=$True)][String]$path,[String]$name,[String]$iname,[String]$type,[Int]$maxdepth=-1)$command="Get-ChildItem -Path$path-Recurse"if($type-eq"f"){$command+=" -File"}elseif($type-eq"d"){$command+=" -Directory"}if($name){$command+=" -Filter...
–name と似ていますが、パターンと現在のファイル名のベース名との照合で、大文字と小文字は区別されません (「使用例」を参照してください)。–name オプションとは異なり、先頭のピリオドは特別に扱われず、/usr/bin/find と/usr/xpg4/bin/find の両方で、ワイルドカードファイル名生成...