linux shell学习一点点

问题,从shell command 交互式地由用户输入密码,但是输入的过程中不会显示用户输入的密码,起到类似于于html中input type=password的作用。

#!/bin/bash
read -s -p "Please input your password!" password
echo "your password is $password"
exit 0

 但是stackoverflow 上面说, read -s 不符合 POSIX 标准。The -s option of read is not defined in the POSIX standard

#!/bin/bash
stty -echo
printf "Password: "
read PASSWORD
stty echo
echo "$PASSWORD"
printf "
"

  

linux中shell变量$#,$@,$0,$1,$2的含义解释

linux中shell变量$#,$@,$0,$1,$2的含义解释: 
变量说明: 
$$ 
Shell本身的PID(ProcessID) 
$! 
Shell最后运行的后台Process的PID 
$? 
最后运行的命令的结束代码(返回值) 
$- 
使用Set命令设定的Flag一览 
$* 
所有参数列表。如"$*"用「"」括起来的情况、以"$1 $2 … $n"的形式输出所有参数。 
$@ 
所有参数列表。如"$@"用「"」括起来的情况、以"$1" "$2" … "$n" 的形式输出所有参数。 
$# 
添加到Shell的参数个数 
$0 
Shell本身的文件名 
$1~$n 
添加到Shell的各参数值。$1是第1参数、$2是第2参数…。 

  

原文地址:https://www.cnblogs.com/oxspirt/p/6859762.html