&3">
赞
踩
用于字符串的输出
# 加引号的
echo "It is a test"
# 不加引号的
echo It is a test
# 显示转义字符
echo "\"It is a test\""
echo "$name It is a test"
echo -e "OK! \n" # -e 开启转义
echo -e "OK! \c" # -e 开启转义 \c 不换行
echo "It is a test" > filename
echo '$name\"'
echo `date`
注意: 这里使用的是反引号 `, 而不是单引号 ’
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。