[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:23154] Re: pipeline in zsh
薮と申します。
From: matznaga@xxxxxxxxxxxxx
Subject: [debian-users:23139] pipeline in zsh
Date: Thu, 6 Jul 2000 23:17:31 +0900
> 松永です。
> potato の zsh についてお聞きします。
>
> LC という文字列を含んだ環境変数の値を知りたくて
>
> set | grep -i lc
>
> と実行したところ、
>
> バイナリー・ファイル(標準入力)と一致します
> set | grep -i lc
> Binary file (standard input) matches
setの出力からバイナリ文字を取り除いてからgrepに渡すのが楽でしょ
う。(man strings)
あと、grep のオプションに入力に「バイナリ」文字が含まれていても
マッチした部分を表示するオプションがないか探してみて下さい。
(grep --help or man grep)
# setだと環境変数だけでなくシェル変数も表示されます。
# printenv, env, export, typeset -x などが環境変数を表示する機能
# を持っています。
---
薮 英文