2017-10-13 19 views
-4

whileループと読み取りを使用してシェルスクリプト内のteeコマンドの動作をシミュレートするか、コマンドの内容を表示できるかどうかを確認します。Teeコマンドの基本的な動作

+0

実装の試みを表示します。 – Cyrus

答えて

1

ないあなたが求めているものを確認してください、しかし、単純化した例のために、これを試す -

file=$1    # take an argument that specifies the file to write into 
exec 3>&1   # create a dup of stdout 
while read line  # now for each line of input 
do echo "$line" >&3 # send a copy to the dup of stdout 
    echo "$line"  # and a copy into the specified file 
done > $file  # this is the file redirection for the loop 
関連する問題