Linux查看文件尾部内容命令-tail
不加任何参数默认显示10行 [root@localhost ~]# tail /etc/passwd systemd-bus-proxy:x:999:997:systemd Bus Proxy:/:/sbin/nologin systemd-network:x:998:996:systemd Network Management:/:/sbin/no……
Linux查看文件头部内容命令-head
不加任何参数默认显示10行 [root@localhost ~]# head /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var……
Linux按屏/行查看文件内容命令-less
-N:查看内容时标注行号,仅为便于查看,不属于文件内容。 [root@localhost ~]# less -N anaconda-ks.cfg 1 #version=DEVEL 2 # System authorization information 3 auth --enableshadow --passal……
Linux删除目录文件命令-rm
删除指定文件 [root@localhost tmp]# pwd /tmp [root@localhost tmp]# ll /tmp/ total 4 drwxr-xr-x 2 root root 6 Nov 28 2017 rty drwx------ 3 root root 16 Dec 1 2017 systemd-priv……
Linux移动(重命名)目录文件命令-mv
将目录/tmp/1下的某文件移动到目录/tmp/1/2下 [root@localhost tmp]# ll /tmp/1/2/ total 0 drwxr-xr-x 3 root root 14 Nov 28 2017 3 [root@localhost tmp]# mv /tmp/1/test.txt /tmp/1/2/ [root@loca……
Linux拷贝(重命名)目录文件命令-cp
将目录/tmp/1下的某文件拷贝到目录/tmp/1/2下 [root@localhost tmp]# ll -h /tmp/1/2/ total 0 [root@localhost tmp]# cp /tmp/1/test.txt /tmp/1/2/ [root@localhost tmp]# ll -h /tmp/1/2/ ……
Linux创建文件命令-touch
直接创建指定文件 [root@localhost ~]# ll total 4 -rw-------. 1 root root 1301 Feb 10 20:30 anaconda-ks.cfg [root@localhost ~]# touch test.txt [root@localhost ~]# ll total 4 -rw-----……
Linux创建目录命令-mkdir
不指定路径则在当前位置下创建目录 [root@localhost tmp]# pwd /tmp [root@localhost tmp]# mkdir qwe [root@localhost tmp]# tree /tmp/ /tmp/ ├── 1 │ └── 2 │ └── 3 │ └── 4 │ ……
Linux显示目录结构命令-tree
不加任何参数和指定位置只显示当前位置下的所有的目录结构(包含文件) [root@localhost tmp]# pwd /tmp [root@localhost tmp]# tree . ├── 1 │ └── 2 │ └── 3 │ └── 4 │ └── 5 ├── s……
Linux查看用户登录信息命令-w & who & whoami
[root@localhost ~]# w 23:46:39 up 8:29, 2 users, load average: 0.00, 0.01, 0.05 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT root tty1 ……
Linux关闭(重启)系统命令-shutdown
立即重启系统 [root@localhost ~]# shutdown -r now 立即关闭系统 [root@localhost ~]# shutdown -h now 3分钟后重启系统 [root@localhost ~]# shutdown -r +3 Shutdown scheduled for Thu 2017-02-0……
Linux查看文件内容命令-cat
[root@localhost ~]# cat anaconda-ks.cfg #version=DEVEL # System authorization information auth --enableshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use ……
Linux显示目录列表命令-ls
不加任何选项和路径为直接显示当前位置的文件列表 [root@localhost ~]# ls anaconda-ks.cfg [root@localhost ~]# pwd /root [root@localhost ~]# ls /root/ anaconda-ks.cfg [root@localhost ~]# -a:显示所有文件……
Linux更改(切换)文件目录命令–cd
[root@localhost ~]# cd /tmp/ [root@localhost tmp]# pwd /tmp [root@localhost tmp]# 不加任何路径为直接切换到当前用户的家目录;等同于命令(cd ~) [root@localhost tmp]# pwd /tmp [root@localhost tmp]# c……
Linux显示当前所在目录位置命令–pwd
pwd #显示(查看)当前所在目录位置 [root@localhost ~]# pwd /root [root@localhost ~]# ……
Linux查看设置系统时间命令–date
不加任何选项和参数为查看系统所有时间信息 [root@localhost ~]# date Mon Jan 23 23:08:29 CST 2017 设置时间(不含秒,秒为默认从00计算) [root@localhost ~]# date 0123102017 Mon Jan 23 10:20:00 CST 2017 设置时间(包含秒……
Linux命令格式:COMMAND [OPTIONS] [ARGUMENTS]
命令(COMMAND):具体的命令 选项(OPTIONS):启用或关闭命令的某个或某些功能 短选项:-单字, 例如:-l, -h;多个短选项可合并使用,例如-l -h, 可写成-lh 长选项:–单词,例如:–all, –help……