- 6. Shell echo命令
- 格式
- 格式
6. Shell echo命令
格式
echo string
显示普通字符(双引号可以忽略)
echo "hello world"
echo hello world
显示转移字符
echo "\"hello world\""
echo \"hello world\"
结果:
"hello world"
显示变量
reed命令从标准输入中读取一行,并把输入行的每个字段的值指定给shell变量:# !/bin/sh
read name
echo "$name is a test"
将以上代码保存为test.sh,name 接受标准输入的变量,运行结果:
asa@asa-virtual-machine:~$ sh hello.sh
Tom
Tom is my name
显示换行
echo -e "OK! \n" # -e 开启转义
echo It is a test
输出结果:
OK!
It is a test
显示不换行
# !/bin/sh
echo -e "OK! \c" # -e 开启转义 \c 不换行
echo It is a test
输出结果:
OK! It is a test
显示结果定向至文件
echo It is a test > myfile
原样输出字符串,不进行转义或取变量(用单引号)
echo '$name\"'
输出结果:
$name\"
显示命令执行结果
echo `date`
注意:这里使用的是 反引号 `,而非单引号。
输出结果显示当前日期:asa@asa-virtual-machine:~$ echo `date`
2016年 01月 22日 星期一 09:14:37 CST