zoukankan      html  css  js  c++  java
  • Linux中echo的用法

    Echo the STRING(s) to standard output.

           -n     do not output the trailing newline
                  输出文字不换行
           -e     enable interpretation of backslash escapes
                   将转义符跟后边的特殊字符解释成特殊意义
           -E     disable interpretation of backslash escapes
                  (default)
                    不解释转义字符   
           --help display this help and exit
                     帮助
           --version
       output version information and exit
              显示版本等信息
           If -e is in effect, the  following  sequences  are
           recognized:   当用-e时特殊字符的效果如下

           \\     backslash
                 显示\
           \a     alert (BEL)
                发出警报声
           \b     backspace
               删除前一个字符
           \c     produce no further output
                最后不加上换行符号
           \e     escape
               字符向前退一位      
           \f     form feed
              换行但光标仍停留在原来的位置
           \n     new line
             换行
           \r     carriage return
             光标移至行首但不换行
           \t     horizontal tab
             插入TAB
           \v     vertical tab
              换行但光标仍停留在原来的位置
           \0NNN  byte with octal value NNN (1 to 3 digits)
             八进制代表的ASCII字节
           \xHH   byte with hexadecimal value HH (1 to 2 dig-
                  its)
             十六进制代表的ASCII字节
  • 相关阅读:
    Device eth0 does not seem to be present, delaying initialization(解决克隆CentOS6.3虚拟机后网卡设备无法启动问题)
    CI整合Smarty
    修改crontab默认的编辑器
    添加数据之后不跳页面显示一个漂亮的提示信息(非ajax提交数据)
    jsp连接mysql数据库
    PHP使用CURL详解
    内、外部号码范围配置
    更改SAP的字段翻译
    SAP 应用服务负载均衡的实现
    SAP中禁止特定用户更改密码
  • 原文地址:https://www.cnblogs.com/linuxer/p/2272533.html
Copyright © 2011-2022 走看看