Linux常用命令

一、Linux常用命令(总)

Note_Day02_05:Linux常用命令.png

二、Linux常用命令(分)

1、pwd – print name of current/working directory

pwd.png

2、cd – change directory

Note_Day02_06:Linux常用命令 - cd.png

3、ls – list,dieplay directory content

ls.png

4、date – print or set the system date and time

Note_Day02_06:Linux常用命令 - date.png

5、hwclock & clock – query or set the hardware clock (RTC)

Note_Day02_06:Linux常用命令 - hwclock&clock.png

6、whereis – locate the binary, source, and manual page files for a command

Note_Day02_06:Linux常用命令 - whereis.png

7、which – shows the full path of (shell) commands

Note_Day02_06:Linux常用命令 - which.png

8、shutdown – Halt, power-off or reboot the machine

Note_Day02_06:Linux常用命令 - shutdown.png

9、echo – display a line of text

Note_Day02_06:Linux常用命令15 - echo.png

10、file – determine file typeNote_Day02_06:Linux常用命令13 - file.png

11、type – Display information about command type

Note_Day02_06:Linux常用命令14 - type.png

12、cat – concatenate files and print on the standard output

Note_Day02_06:Linux常用命令 - cat.png


13、tac – concatenate and print files in reverse

Note_Day02_06:Linux常用命令 - tac.png

14、who – show who is logged on

Note_Day02_06:Linux常用命令 - who.png

15、w – Show who is logged on and what they are doing

Note_Day02_06:Linux常用命令 - w.png

原创文章,作者:Tornado,如若转载,请注明出处:http://www.178linux.com/46832

(0)
TornadoTornado
上一篇 2016-09-19 12:03
下一篇 2016-09-19 12:03

相关推荐

  • Shell脚本编程—特殊用法(select)及函数、递归

    Shell脚本编程—特殊用法及函数   一、while的特殊用法: 1、使用格式: while read 变量名;do    循环体 done </PATH/TO/filename 注:依次从指定的文件中的内容逐行读取,并把读取到的每行赋值给变量。 2、例题: 扫描/etc/passwd文件每一行,如发现GECOS字段为空…

    Linux干货 2016-08-21
  • Python from entry to abandon

          学习Linux已经有大致两周了,依然感觉到自己仍然在运维的大门外徘徊。于是我想要找到一个在Linux之外的业余方向,可以作为枯燥基础学习的调节。没过多久我就发现了Python可以 说是钦定的选择,它作为Linux的内置语言,传言风格简洁优美,功能强大。Python老生常谈的缺点是效率不高,哎,没办…

    Linux干货 2017-04-01
  • 马哥教育网络20期—nginx

    Nginx 一. Nginx 特性 二. Nginx 基本架构 三. Nginx 基本功能 四. Nginx 安装 五. Nginx 配置文件 六. Nginx http服务功能测试 七. Nginx LNMP 一. Nginx 特性 模块化,目前只能将模块编译进Nginx,暂时不支持动态装卸载模块.(httpd优势) 可靠性,一个主进程(master)控制…

    Linux干货 2016-06-26
  • 20160809作业

    一、如何设置tab缩进为4个字符       临时设置:set tabstop=4       全局设置vim /etc/vimrc—>添加set tabstop=4       当前用户生效,手动添加文…

    Linux干货 2016-08-10
  • 马哥教育网络班21期+第9周课程练习

    1、写一个脚本,判断当前系统上所有用户的shell是否为可登陆shell(即用户的shell不是/sbin/nologin);分别这两类用户的个数;通过字符串比较来实现; #!/bin/bash while read line; do     if [[ $line&n…

    Linux干货 2016-09-01
  • M20 – 1- 第三周博客(3):Linux上文本处理三剑客grep

    Grep是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 1、作用 Linux系统中grep命令是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹 配的行打印出来。grep全称是Global Regular Expression Print,表示全局正则表达式版本,它的使用 权限是…

    Linux干货 2016-08-08