Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bash スクリプトを使用して、情報をコンソールに表示せずにファイルに保存するにはどうすればよいですか? ユーザーが値を入力する必要があるスクリプトを作成しました。この値は、画面に出力せずにテキスト ファイルに記録する必要があります。これまで私は書いてきました:
echo "x = " read v_x echo $v_x > temp.txt
しかし、それはファイルに保存するだけでなく、画面にも表示します。
-s読み取りのオプションを使用できます。
-s
read -s v_x
help read伝えます:
help read
-s do not echo input coming from a terminal