Operation of the Linux file (view, create, append content) __linux

Source: Internet
Author: User
1. View the contents of the file

cat [filename] ///one-time output of all the contents of the file to the terminal

more [filename] //By knocking the return way to view the contents of the file line by row, Q-Key end view

less [filename] //"Up and down" key way to view the contents of the file (support back-looking), Q-Key end view

head-n [filename] //View the first n rows of a file

tail-n [filename] //View the last n rows of a file

WC [filename] //View the number of rows in the file 2. Create a file

Touch [filename] //create filename file in current directory

Touch dir/filename //create filename file in specified directory

touch/home/zhangsan/filename //create filename file by absolute path 3. Append content to File

echo Content > File //Add "content" to file with overwrite write

echo content >> files //Add "content" to the file in "append" mode

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.