使用bash脚本保存到文件而不在屏幕上打印

时间:2013-11-12 09:03:03

标签: bash file logging console echo

使用bash脚本,如何在文件中保存信息,而无需在控制台上打印? 我写了一个脚本,要求用户输入一个值。该值必须记录在文本文件中,而不在屏幕上打印。到目前为止我写过:

echo "x = " 
read v_x 
echo $v_x > temp.txt 

但是将其打印在屏幕上并将其保存在文件中。

1 个答案:

答案 0 :(得分:2)

您可以使用-s选项进行阅读:

read -s v_x

help read告诉:

  -s        do not echo input coming from a terminal