• echo 命令


    echo - display a line of text
    
    SYNOPSIS
           echo [SHORT-OPTION]... [STRING]...
    
    DESCRIPTION
    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)

      \ backslash 反斜线
           a alert (BEL) 发出警告声
            backspace 删除前一个字符
           c produce no further output 不输出后面的内容
           e escape 跳过后面一个字符输出
           f form feed 下移后面内容相同位置输出
           
     new line 换行且光标移至行首
           	 horizontal tab 插入tab
           v 同f
    示例:
    echo -n string
     

      echo -e  string //处理特殊字符

      

    赠人玫瑰,手有余香,如果我的文章有幸能够帮到你,麻烦帮忙点下右下角的推荐,谢谢!

    作者: imcati

    出处: https://www.cnblogs.com/imcati/>

    本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出, 原文链接

  • 相关阅读:
    jsp实现登陆功能小实验
    netty
    shiro
    mybatis
    spring MVC
    spring
    集合框架面试题
    Redis面试题
    Dubbo面试题汇总
    阿里面试题
  • 原文地址:https://www.cnblogs.com/imcati/p/11385338.html
Copyright © 2020-2023  润新知