Retourner au contenu associé (entrée de forum : unzip |grep)
Posté par tgl le 24 juin 2005 à 16:17. En réponse au message unzip |grep. Évalué à 3.
for i in *.sxw ; do unzip -p "$i" content.xml | grep -l --label="$i" "scaner" done
for i in *.sxw ; do if unzip -p "$i" content.xml | grep -q "scaner" ; then echo "$i" fi done
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
# plutôt comme ça :
Posté par tgl . En réponse au message unzip |grep. Évalué à 3.