摘要: Makefile视频教程 跟我一起写makefile 如何编写Makefile文件 main.c #include <stdio.h> #include <stdlib.h> #include <math.h> int main(void) { int i; i = 8; printf("data= 阅读全文
posted @ 2022-05-12 22:49 starc的miao 阅读(150) 评论(0) 推荐(0)
摘要: 打开SSH 使用以下命令开启、关闭、重启ssh服务: systemctl status sshd.service # 检查SSH服务有没有启动 systemctl start sshd.service #启动ssh服务 systemctl restart sshd.service #重启ssh服务 阅读全文
posted @ 2022-05-12 22:22 starc的miao 阅读(361) 评论(0) 推荐(0)
摘要: command 代码高亮 syntax on/off 设置行号 set number 自动配置文件 vim ~/.vimrc 跳转行号 88 gg 7 k/j 查找 /str N shift + N set nohlsearch 按字跳转 W / B 删除 CC / C2C 取消 U 粘贴 P 赋值 阅读全文
posted @ 2022-05-12 19:30 starc的miao 阅读(63) 评论(0) 推荐(0)