我知道可以使用带有 read -s someVar 的 bash 静默读取用户输入,我想知道是否有等效的 /bin/sh 允许用户输入而不在命令行上显示它?

注意: 我只是好奇 /bin/sh read 是否以某种方式支持此功能。

最佳答案

使用 stty 命令关闭输入字符的回显。

get_entry () {
  printf "Choose: "
  stty -echo
  IFS= read -r choice
  stty echo
  printf '\n'
}

get_entry

printf "You chose %s\n" "$choice"

关于linux - 如何在shell中 'read -s'?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38557247/

10-15 11:59