Shell Echo 命令

Shell 的 echo 用于字符串的输出。命令格式 :

echo string

1. 显示普通字符串

echo "It is a test"
# 这里的双引号完全可以省略,以下命令与上面实例效果一致:
echo It is a test

2. 显示转义字符

echo "\"It is a test\""

3. 显示变量

#!/bin/sh
read name 
echo "$name It is a test"

4. 显示换行

echo -e "OK! \n" # -e 开启转义
echo "It is a test"

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

5. 显示结果定向到文件

echo "It is a test ..." > test.txt

6. 显示命令执行结果

echo `date`
# 注意: 这里使用的是反引号 `, 而不是单引号 '。
# 结果将显示当前日期