
Linux命令
ZYNB
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux文件查看/编辑方法介绍-putty常用命令
Linux文件查看/编辑方法介绍-putty常用命令 cat 命令介绍 cat 命令的原含义为连接(concatenate), 用于连接多个文件内容并输出到标准输出流中(标准输出流默认为屏幕)。实际运用过程中,我们常使用它来显示文件内容。如果您熟悉MS-DOS 下的type 命令,相信不难掌握cat 命令。该命令的常用示例如下: cat file1.txt 显示 file1.txt 文件的内容; cat file1.txt file2.txt 显示 file...转载 2020-12-04 11:13:20 · 1858 阅读 · 0 评论 -
Git 常用命令大全
一、 Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态 git commit 提交 git branch -a 查看所有的分支git branch -r 查看远程所有分支git commit -am "init" 提交并且加注释 git remote add origin [email protected]:ndshowgit push o...转载 2020-12-04 11:10:23 · 105 阅读 · 0 评论