6. Shell echo命令

格式

echo string
  1. 显示普通字符(双引号可以忽略)
echo "hello world"
echo hello world
  1. 显示转移字符
echo "\"hello world\""
echo \"hello world\"

结果:

"hello world"
  1. 显示变量
    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
  1. 显示换行
echo -e "OK! \n" # -e 开启转义
echo It is a test

输出结果:

OK!
It is a test
  1. 显示不换行
# !/bin/sh
echo -e "OK! \c" # -e 开启转义 \c 不换行
echo It is a test

输出结果:

OK! It is a test
  1. 显示结果定向至文件
echo It is a test > myfile
  1. 原样输出字符串,不进行转义或取变量(用单引号)
echo '$name\"'

输出结果:

$name\"
  1. 显示命令执行结果
echo `date`

注意:这里使用的是 反引号 `,而非单引号。
输出结果显示当前日期:

asa@asa-virtual-machine:~$ echo `date`
2016年 01月 22日 星期一 09:14:37 CST

你可能感兴趣的:(6. Shell echo命令)