1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mdfindの結果をtestコマンドにパイプできない

Last updated at Posted at 2018-05-26

mdfindの結果をtestコマンドにパイプしたかった

最初に書いていたコード。
何回やっても 0 しか出力しない。


mdfind -name ファイル名 | test -z; echo $?

それもそのはず、上記コードだとtest -zの結果が毎回出力されるだけです。
デフォルト出力が0なので、毎回0だったわけです。
パイプすると、test -z パイプされたものってなるかと思ったのですが、違うようです。
標準入力と引数の違いかと推測してます。
ということで、testコマンドにはパイプできないようです:information_desk_person:

動作するコード


result=$(mdfind -name ファイル名);test -z "$result"; echo $?

test -z 検証ちという風に指定してあげました。
これなら動作するようです。

少し改良

[ -z $(mdfind asfdsd.txt) ]; echo $?

以上!!:runner_tone2:

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?