
其他
文章平均质量分 63
iulmt
这个作者很懒,什么都没留下…
展开
-
【Docker】Docker操作记录
安装docker 删除旧版docker: sudo apt-get remove docker docker-engine docker-ce docker.io 更新系统: sudo apt-get update 安装相关依赖: sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common 下载GPG密钥: curl -fsSL https://download.docker.co.原创 2022-03-07 11:20:01 · 137 阅读 · 0 评论 -
【VIM】Vim命令合集
命令历史 以:和/开头的命令都有历史纪录,可以首先键入:或/然后按上下箭头来选择某个历史命令。 启动vim 在命令行窗口中输入以下命令即可 vim 直接启动vim vim filename 打开vim并创建名为filename的文件 文件命令 打开单个文件 vim file 同时打开多个文件 vim file1 file2 file3 ... 在vim窗口中打开一个新文件 :open file 在新窗口中打开文件 :split file 切换到下一个文件 :bn 切换到上一个文件 :bp 查看当前...原创 2022-03-07 11:15:07 · 133 阅读 · 0 评论