第二天:Linux 文本操作
原文英文,约700词,阅读约需3分钟。发表于: 。write something on a text file using echo directly: $ echo hello world > my_File.txt you can copy a text file from another file using echo command: $ echo < my_file.txt > >...
文章介绍了在命令行中操作文本文件的方法,包括使用`echo`写入文件,`cut`截取文本,`paste`合并文件,`head`和`tail`查看文件头尾,`sort`排序,`tr`转换大小写,`uniq`去重,`wc`和`nl`统计行数,`grep`搜索文本。还介绍了`vim`编辑器的基本操作,如插入、删除、复制、粘贴、保存和退出。