
学习笔记
Kylincommander
这个作者很懒,什么都没留下…
展开
-
Shell语法简单入门
课程由阿里云大学免费提供0. 运行chmod +x <name>.sh./<name>.sh1. 变量赋值:直接赋值:A=aaaecho $AB="$A B"B='$A B'注意:1) 等号两边不能有空格; 2)单引号之间的内容原封不动地制定给了变量,双引号之间仅仅是取消了空格的作用,保留特殊符号的含义。命令的结果作为变量 :# 1.A=`date`echo $A# 2.B=$(ls -l)echo $B与其他变量或字符串组成新字原创 2020-08-29 10:14:49 · 225 阅读 · 0 评论 -
Vim 基础用法入门笔记
Configure your own Vimcd ~vim .vimrcKey mapnoremap a b nore means no recursion. remap a to b:map Q :q<CR> Map Q to :q and Enter.Other useful settingsset number : Show the number of line.set relativenumber: Show the relativenumber of line原创 2020-08-26 12:58:12 · 309 阅读 · 0 评论 -
Notes for The Missing Semester of Your CS Education(2020) provided MIT
This is the note that i took for the Class of the MIT : The Missing Semester of Your CS Education(2020).https://www.bilibili.com/video/BV1x7411H7wa/?p=11.ShellWhitespace seperates the arguments, if I need an argument as multiple words:1.Quote those w原创 2020-08-23 17:26:03 · 2245 阅读 · 0 评论