Browse Classes :
LS//Browse the contents of the current directory (files and directories)
LS-L//Long format Browse the contents of the current directory (files and directories), similar to the Windows detailed information list
ls-d//Browse current directory (name)
LS-LD//Long format browse current directory information
Path class :
CD//Return to User home directory ~ (non-root directory), or: cd ~
CD [DirName]//switch to the specified directory
mkdir//Create a directory
RmDir//Delete empty directory
File class :
touch //Can create new files, main functions related to timestamps
VI // Can create new file, main function for simple text editor
Vim //can create new file, main function is complex text editor
Cat // View the contents of a file, as well as the ability to create files and append content to existing files
// http:// blog.sina.com.cn/s/blog_52f6ead0010127xm.html
// echo //output function to print only or add content to a file (redirect).
// http://www.linuxidc.com/linux/2014-10/107550.htm
RM //delete command
// http ://man.linuxde.net/rm
This article is from the "Venetian It Notes" blog, so be sure to keep this source http://tripe.blog.51cto.com/2248780/1953238
Linux Learning Note 3_ basic file Operation Command Review 1