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

相关推荐

  • raid5创建

    创建分区并改类型 创建raid5   创建把文件系统 生成配置文件    

    2017-12-17
  • 基于lvs调度的web应用——Discuz程序

    实验环境: 前端主机:10.1.43.101 后端主机1:172.16.0.9   作为lvs-dr的调度器,并且提供mysql和nfs文件共享 后端主机2:172.16.0.2   作为ap服务器之一 后端主机3:172.16.0.3   作为ap服务器之一 实验拓扑: 后端主机1: [root@node3…

    Linux干货 2016-10-26
  • 标记2

    标记2

    Linux干货 2018-03-11
  • RPM与YUM命令异同详解

    RPM和YUM都是用来安装程序的工具,但是它们有太多相似的用法以至于有事很难分清应该哪个那就来一起详细的了解一下他们的功能及用法,以及他们的相同以及不同之处。 RPM 软件包管理器功能:安装,卸载,升级,查询,校验,打包,数据库管理RPM在安装时不能处理程序之间复杂的依赖关系RPM可以验证软件包来源的合法性、完整性。常用选项: -i:表示安装。(常用:-iv…

    2017-06-18
  • Linux screen命令

    screen命令 一、简介 Screen是一款终端模拟的屏幕管理器,用于命令行终端自由切换。 当我们需要执行一个用时较多的作业,不希望自己或者他人误操作关闭终端导致作业中断,可以进入screen,这样,当终端关闭,作业仍会继续执行。 GNU’s Screen 官方站点:http://www.gnu.org/software/screen/ &nb…

    2017-07-13
  • 通配符、正则表达式小计

    基本通配符:    *: 匹配任意长度的任意字符;    ?: 匹配任意的单个字符;    []: 匹配指定范围内的任意单个字符;    [^]: 匹配非指定范围内的任意单个字符;   简单示例:   &nbs…

    Linux干货 2017-03-16