Shell 的 echo 用于字符串的输出。命令格式 :
echo string
echo "It is a test"
# 这里的双引号完全可以省略,以下命令与上面实例效果一致:
echo It is a test
echo "\"It is a test\""
#!/bin/sh
read name
echo "$name It is a test"
echo -e "OK! \n" # -e 开启转义
echo "It is a test"
#显示不换行
echo -e "OK! \c" # -e 开启转义 \c 不换行
echo "It is a test"
echo "It is a test ..." > test.txt
echo `date`
# 注意: 这里使用的是反引号 `, 而不是单引号 '。
# 结果将显示当前日期