考试习题及答案

1.使用绝对路径切换到/tmp工作目录下
cd /tmp

2.使用命令在/tmp目录下创建dira,dirb,dirc三个目录(使用一条命令)
mkdir dira dirb dirc
mkdir dir{a..c}

3.在dirb下创建11,11下创建22,22下创建33(使用一条命令)
mkdir -p dirb/11/22/33

4.通过相对路径进入到33里面,查看当前所在路径

[root@centos 22]# cd 33
[root@centos 33]# pwd
/tmp/dirb/11/22/33

[root@centos dirb]# cd ./11/22/33
[root@centos 33]# pwd
/tmp/dirb/11/22/33

5.在11目录下创建5个名为file1到file5的文件

[root@centos 11]# touch file{1..5}
 [root@centos 11]# ls
22     file2  file4
file1  file3  file5

6.将文件file2复制到22目录下

[root@centos 11]# ls
22     file2  file4
file1  file3  file5
[root@centos 11]# cp file2 22
[root@centos 11]# cd 22
[root@centos 22]# ls
33  dirb  file2


7.使用命令查看ifconfig这个命令是内部命令还是外部命令

[root@centos 22]# type ifconfig
ifconfig 是 /usr/sbin/ifconfig

8.使用help\man\info查看ifconfig这个命令的帮助信息

ifconfig --help
man ifconfig
info ifconfig

上一篇:.Net 6中的PeriodTimer


下一篇:python列表的内置方法