Linux echo介绍
1 用途:
1)打印信息,包括:变量的值、字符串等
2)shell编程中,帮助debug程序
2 常用参数:
-n:打印信息之后不换行
-e:对字符串转义
3 例子:
例子一:
[root@localhost ~]# echo $LANG
zh_CN.UTF-8
例子二:
[root@localhost ~]# echo -n "please input your name: ";read name;echo "your name is:$name"
please input your name: think
your name is:think
例子三:
[root@localhost ~]# echo -e "hello\fworld"
hello
world
相关推荐
farwang 2020-11-25
星愿心愿 2020-11-24
tianhuak 2020-11-24
zhjn0 2020-11-24
昭君出塞 2020-11-23
bluecarrot 2020-11-23
linuxwcj 2020-10-21
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
yutou0 2020-10-17
applecarelte 2020-10-16
ourtimes 2020-10-16
waterhorse 2020-09-19
MRFENGG 2020-11-11
rainandtear 2020-10-30
kyssfanhui 2020-10-20
liuhangtiant 2020-10-20