04 - 变量的扩展应用

2022-03-12  本文已影响0人  舍是境界

多种引号的区别

touch a b c
touch "a b c"

test=`grep root /etc/passwd`
test=$(grep root /etc/passwd)

read标准输入取值

#!/bin/bash
read -p "请输入用户名:" name
radp -p "请输入密码:" -s pass
useradd "$name"
echo "$pass" | passwd --stdin "$name"
read -t 3 iname

变量的作用范围

x=11
 sh 
sh-3.2$ echo $x

export x=11
sh
sh-3.2$ echo $x
11

小结

上一篇下一篇

猜你喜欢

热点阅读