[Shell Foundation]--echo Command

Source: Internet
Author: User
Tags echo command

echo command: Used primarily for output in the shell

1.-N does not wrap the display result (by default, the line is wrapped)

2.-E "" supports using some special characters in double quotes

The usual special characters are

\a  a warning sound; \b  Delete the previous character; \c  ends with a newline symbol, \f, \v wraps but the cursor remains in its original position; \ n  wraps and the cursor moves to the beginning of the line; \ r   the cursor moves to the beginning of the line but does not wrap; \ t Insert   tab;\\   insert \ character; \nnn insert ASCII character represented by NNN (octal);

Script instance  

 [[email protected] ~]# "  hello World   " hello world[[email protected]  ~]# echo -N  hello   " hello[[email protected]  ~]# [email  protected]  ~]# echo -e  " Span style= "color: #800000;" >hello\tworld   hello World  
#实现倒计时效果 #!/bin/bash for in 'seq3 -11'  do    echo  "\b\n$i"    sleep 1  Done

[Shell Foundation]--echo Command

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.