zshの特定のファイルとファイルタイプの存在の条件付きテスト

zshの特定のファイルとファイルタイプの存在の条件付きテスト

abc現在のディレクトリに拡張子またはbakインファイルがあることを確認したいと思いますtmpまたはという関数tmpout.wrkはzshで動作するように(最終的には関数の一部である)得ることはできません。動作しますが、正しく検出されません。

if [[ -f *.(abc|bak|tmp) || -f tmpout.wrk ]]; then 
    echo 'true'; 
else 
    echo 'false'; 
fi

答え1

globが1つ以上のファイルを返すかどうかをテストするには、次のようにします。

if ()(($#)) (*.(abc|bak|tmp)|tmpout.wrk)(NY1); then
  echo true
else
  echo false
fi

確認されたシンボリックリンクの1つ以上が通常のファイルであることを確認するには、-. glob修飾子を追加します。

if ()(($#)) (*.(abc|bak|tmp)|tmpout.wrk)(NY1-.); then
  echo true
else
  echo false
fi
  • ()(($#))globの結果を渡す匿名関数です。関数の本文((($#)))は、単に引数の数がゼロでないかどうかをテストします。

  • Nこのglobのglob修飾子で開きますnullglob(globがファイルと一致しない場合は、globを何も拡張しません)。

  • Y1拡張は最大1つのファイルに制限されます。これはパフォーマンスの最適化です。

  • -次のglob修飾子を考慮します。後ろにシンボリックリンクの解決。

  • .通常のファイルのみが考慮されます(したがって、この一般的なファイルまたはシンボリックリンクは最終的にコマンドと同様に通常のファイルとして解決されます[ -f file ])。

答え2

長い話を短く

set -o extendedglob
if [[ -n *.(abc|bak|tmp)(#qN) || -f tmpout.wrk ]]; then

そうでなければ、いくつかのテストを通して

% [[ -f /etc/passwd ]] && echo yea
yea
% echo /etc/passw?
/etc/passwd
% [[ -f /etc/passw? ]] && echo yea
% 

わかった、zshここで何してるの?

% set -x
% [[ -f /etc/passw? ]] && echo yes
+zsh:13> [[ -f '/etc/passw?' ]]
% 

一重引用符は確かに結果を生成しません。[[...を検索しman zshallてから...を検索してみましょうCONDITIONAL EXPRESSIONS。ああ、ファイル名の生成に関する内容は次のとおりです。

   Filename  generation is not performed on any form of argument to condi-
   tions.  However, it can be forced in any case where normal shell expan-
   sion  is  valid and when the option EXTENDED_GLOB is in effect by using
   an explicit glob qualifier of the form (#q) at the end of  the  string.
   A  normal  glob qualifier expression may appear between the `q' and the
   closing parenthesis; if none  appears  the  expression  has  no  effect
   beyond causing filename generation.  The results of filename generation
   are joined together to form a single word, as with the results of other
   forms of expansion.

   This  special  use of filename generation is only available with the [[
   syntax.  If the condition occurs within the [ or test builtin  commands
   then  globbing  occurs instead as part of normal command line expansion
   before the condition is evaluated.  In this case it may generate multi-
   ple words which are likely to confuse the syntax of the test command.

   For example,

          [[ -n file*(#qN) ]]

   produces  status  zero if and only if there is at least one file in the
   current directory beginning with the string `file'.  The globbing qual-
   ifier  N  ensures  that the expression is empty if there is no matching
   file.

だからその点を念頭に置いて、

% [[ -f /etc/passw?(#q) ]] && echo yes
+zsh:14> [[ -f /etc/passwd ]]
+zsh:14> echo yes
yes
% exec zsh -l

あなたの場合、ファイルがない場合を考えてください。

% mkdir dir
% cd dir
% touch blah.foo
% [[ -f *.(foo|bar|baz)(#q) ]] && echo yea
yea
% rm blah.foo
% [[ -f *.(foo|bar|baz)(#q) ]] && echo yea
zsh: no matches found: *.(foo|bar|baz)(#q)
% [[ -f *.(foo|bar|baz)(#qN) ]] && echo yea
% touch a.foo b.foo
% [[ -f *.(foo|bar|baz)(#qN) ]] && echo yea
% [[ -n *.(foo|bar|baz)(#qN) ]] && echo yea
yea
% 

-nグローブが一致しているかどうかを確認しますが、そのファイルが通常のファイルであるかどうかを確認しません。)

関連情報