Linux常用命令 Posted on 2017-04-03 | Post modified: 2018-11-12 | In Linux | Visitors: Words count in article: 2,105 | Reading time ≈ 8分钟 Linux基本命令cd命令123456# 根据绝对路径,切换到目录/root/Docements cd /root/Docements # 根据相对路径,切换到当前目录下的path目录中,“.”表示当前目录 cd ./path# 返回上一级目录cd .. ls命令123456# 查看文件与目录的 ... Read more »
Linux常用软件 Posted on 2017-03-01 | Post modified: 2018-08-08 | In Linux | Visitors: Words count in article: 1,093 | Reading time ≈ 5分钟 vim最常用: 常用度从高至低A level i:insert模式 :wq:存盘退出 yy:复制一整行 dd:删除当前行,并且添加至剪贴板 p:粘贴剪贴板 o:当前行后插入行 0:移动光标到行头 $:移动光标到行尾 gg:移动光标到第一行 G:移动光标到最后一行 u: undo C-r: redo ... Read more »