Shell脚本入门(十五) - echo

在我们之前的例子中,我们经常使用echo命令将一些信息输出,这回我们来详细了解下echo这个命令

语法:(man echo)

echo -n :输出后不会自动换行

echo -e :会对一些字符做特殊处理

参考网址:http://blog.csdn.net/flowingflying/article/details/5309013

/a : 发出警告铃音(ALERT or CTRL-G (bell))
/b : 退格(BACKSPACE or CTRL-H )
/c : 删除最后的字符及最后的换行(Omit final NEWLINE )
/e : 删除后面的一个字符(Escape character (same as /E) )
/E : 同上(Escape character)
/f : 换页符,在某些现实中会清屏,有些会换行(FORMFEED or CTRL-L )
/n : 换行(NEWLINE (not at end of command) or CTRL-J )
/r : 从行头开始,和换行不一样,仍在本行(RETURN (ENTER) or CTRL-M )
/t : tab键(TAB or CTRL-I )
/v : 竖直tab,和/f一样,显示不同机器有所不一样,通常会引起换行VERTICAL TAB or CTRL-K
/n : 在cygwin中使用/65,无法正确显示'A’但是下面两种方法否可以显示。ASCII character with octal (base-8) value n, where n is 1 to 3 digits
/0nnn : 用8进制的值表示一个字符,例如/0101,即65,表示字符’A’(The eight-bit character whose value is the octal (base-8) value nnn where nnn is 1 to 3 digits )
/xHH : 用16进制的值表示一个字符,例如/x41,即65,表示字符’A’The eight-bit character whose value is the hexadecimal (base-16) value HH (one or two digits)
// : 表示‘/’Single backslash


你可能感兴趣的:(linux,shell,printf,echo,脚本)