Linuxサーバ設定備忘録
本文へジャンプ

  Linuxコマンド-【tee】

標準入力から読んだ内容を標準出力とファイルに書き出す


 構文
 tee [-ai] [--append] [--ignore-interrupts] [file...]
 tee [--help] [--version]
 オプション
 -a, --append ファイル内容を上書きせずに、標準入力をファイルに追加する
 -i, --ignore-interrupts 割り込みシグナルを無視する
 file 出力するファイル名を指定する
 --help 標準出力に使用方法を出力する
 --version 標準出力にバージョン情報を出力する
 使用例
dateコマンドの実行結果をfile1に保存する
 $ date | tee file1
 関連事項
Copyright©2006 Linuxサーバ設定備忘録 All Rights Reserved.