上课笔记 3.13

人体造血靠骨髓。技术知识更新超快,快速学习知识靠自学。

老男孩思想:如何提升自学能力?

1、养成主动看书的习惯。

2、养成预习的习惯。 这就是工作中领导分配任务,让你去搞定的模拟。

3、课堂上积极思考,对老师提问的问题主动回答, 对于不会的要主动发问。

4、对老师留的课后拓展的作业要能够完成。

5、对学习的内容要深度编码总结(思维导图总结,画图总结)等

知识==>短时记忆===>编码加工===>长时记忆(存储大脑里)===>提取

6、课后遇到不会的不要轻易问别人,要学会自己解决问题。

7、提升阅读外语的能力。通过计算机技术知识反向学习外语

a.学过的单词记录单词对应的意思的英文fhs目录层次标准里去查或man cp看名字

b.总结100个报错的翻译

1.tr 替换或删除字符Linux里严格区分大小写

2. grep 文本过滤工具例:[root@oldgirl ~]# cat test.txt Welcome to oldboy training.we are excellent.[root@oldgirl ~]# grep "oldboy" test.txt Welcome to oldboy training

.-v 取反[root@oldgirl ~]# grep -v "oldboy" test.txt we are excellent. [root@oldgirl ~]# cat test.txt Welcome to oldboy training.we are excellent.

-I 不区分大小写[root@oldgirl ~]# grep -i "w" test.txt Welcome to oldboy training.we are excellent.[root@oldgirl ~]# grep "w" test.txt we are excellent.[root@oldgirl ~]# grep -iv "w" test.txt

-o 只显示匹配的内容 [root@oldgirl ~]# grep -o "oldboy" test.txt oldboyoldboy

-n 显示匹配行的行号

-E 扩展grep命令,即egrep [root@oldgirl ~]# grep -E "to|are" test.txt Welcome to oldboy training.we are excellent.[root@oldgirl ~]# egrep "to|are" test.txt Welcome to oldboy training.we are excellent.

考题:在/data目录下创建oldboy.txt,并增加"I am studying linux."一行内容。

方法1:[root@oldgirl ~]# mkdir /data -p

[root@oldgirl ~]# ls -ld /datadrwxr-xr-x 2 root root 6 Mar 13 10:20 /data[root@oldgirl ~]# vim /data/oldboy.txtI am studying linux.[root@oldgirl ~]# cat /data/oldboy.txtI am studying linux.

方法2:[root@oldgirl ~]# mkdir -p /data[root@oldgirl ~]# echo "I am studying linux." >/data/oldboy.txt [root@oldgirl ~]# cat /data/oldboy.txt I am studying linux.

方法3:cat>/data/oldboy.txt <或1>标准输出重定向,箭头方向就是数据流向, 把左边的数据流向到右边,会清空右边之前的数据。

 清空前备份: [root@oldgirl ~]# cp test.txt{,.ori} [root@oldgirl ~]# cp test.txt test.txt.ori

 清空文件: [root@oldgirl ~]# >test.txt [root@oldgirl ~]# cat test.txt echo "I am studying linux." >/data/oldboy.txt

 >>或1>>追加输出重定向,内容追加到文件尾部。

[root@oldgirl ~]# echo "I am studying linux." >>/data/oldboy.txt [root@oldgirl ~]# cat /data/oldboy.txt I am studying linux. I am studying linux. I am studying linux.

<或0<标准输入重定向,箭头方向就是数据流向, standard input, writing to standard output. 标准 输入 写 到 标准 输出

[root@oldboyedu ~]# tr "am" "01" 标准错误输出重定向,箭头方向就是数据流向,把左边的【报错】输出到右边(覆盖)。

2>> 标准错误追加输出重定向,箭头方向就是数据流向,把左边的【报错】输出到右边(追加)。固定定义:数字1 标准输出(standard output)

数字0 标准输入(standard input)

数字2 错误输出(error output)

[root@oldboyedu ~]# echo "I am studying linux." 1>/data/oldboy.txt [root@oldboyedu ~]# cat /data/oldboy.txtI am studying linux.[root@oldboyedu ~]# echo "I am studying linux.." 1>>/data/oldboy.txt [root@oldboyedu ~]# cat /data/oldboy.txtI am studying linux.I am studying linux..[root@oldboyedu ~]# tr "am" "01" 0oldboy.txt EOF[root@oldboyedu ~]# cat oldboy.txt I am oldboy

方法3:cat>/data/oldboy.txt

你可能感兴趣的:(上课笔记 3.13)