马哥教育网络班22期+第2周课程练习

1、Linux上文件管理命令有哪些,其常用的相关示例演示。

常见文件管理命令有:touch/stat/file/rm/cp/mv/nano

示例如下:

[root@localhost week2_test]# touch newfile
[root@localhost week2_test]# ls -al
total 4
drwxr-xr-x.  2 root root   20 Aug 19 23:00 .
drwxrwxrwt. 20 root root 4096 Aug 19 23:00 ..
-rw-r--r--.  1 root root    0 Aug 19 23:00 newfile

[root@localhost week2_test]# stat newfile
  File: ‘newfile’
  Size: 0         Blocks: 0          IO Block: 4096   regular empty file
Device: 803h/2051dInode: 106057863   Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Context: unconfined_u:object_r:user_tmp_t:s0
Access: 2016-08-19 23:00:30.008106826 -0700
Modify: 2016-08-19 23:00:30.008106826 -0700
Change: 2016-08-19 23:00:30.008106826 -0700
 Birth: -
[root@localhost week2_test]# file newfile
newfile: empty
[root@localhost week2_test]# rm newfile 
rm: remove regular empty file ‘newfile’? y
[root@localhost week2_test]# ls 
[root@localhost week2_test]# cp /etc/fstab /etc/redhat-release  .
[root@localhost week2_test]# ls -al
total 12
drwxr-xr-x.  2 root root   39 Aug 19 23:01 .
drwxrwxrwt. 20 root root 4096 Aug 19 23:01 ..
-rw-r--r--.  1 root root  501 Aug 19 23:01 fstab
-rw-r--r--.  1 root root   38 Aug 19 23:01 redhat-release
[root@localhost week2_test]# mv fstab fstab.bak
[root@localhost week2_test]# ls -al
total 12
drwxr-xr-x.  2 root root   43 Aug 19 23:02 .
drwxrwxrwt. 20 root root 4096 Aug 19 23:02 ..
-rw-r--r--.  1 root root  501 Aug 19 23:01 fstab.bak
-rw-r--r--.  1 root root   38 Aug 19 23:01 redhat-release
[root@localhost week2_test]# nano fstab.bak 
^G 获取帮助
^O 将该文件内容写入磁盘      
^R 将另一个文件内容写入此文件     
^Y 上一页
^V 下一页
^K 剪切光标所在的那一行
^U 撤销所有剪切  
^C 显示光标所在行在全文中的位置
^X 退出

2、bash的工作特性之命令执行状态返回值和命令行展开设计的内容和实例演示。

执行状态返回值:若执行状态成功则返回0;若不成功则返回1-255的任意值

[root@localhost week2_test]# ls 
fstab.bak  redhat-release
[root@localhost week2_test]# echo $?
0
[root@localhost week2_test]# lssss
bash: lssss: command not found...
[root@localhost week2_test]# echo $?
127

花括号展开:

[root@localhost week2_test]# mkdir -pv test/{x/m,y}
mkdir: created directory ‘test’
mkdir: created directory ‘test/x’
mkdir: created directory ‘test/x/m’
mkdir: created directory ‘test/y’

3、请使用命令行展开功能完成以下练习:

(1)创建/tmp目录下的a_c a_d b_c b_d

[root@localhost tmp]# mkdir -pv {a,b}{_c,_d}
mkdir: created directory ‘a_c’
mkdir: created directory ‘a_d’
mkdir: created directory ‘b_c’
mkdir: created directory ‘b_d’

(2)创建/tmp/mylinux目录下的:

[root@localhost mylinux]#mkdir -pv {bin,boot/grub,dev,etc{/rc.d/init.d,/sysconfig/network-scripts},lib/modules,lib64,proc,sbin,sys,tmp,usr/local{/bin,/sbin},var{/lock,/log,/run}}
[root@localhost mylinux]# tree
.
├── bin
├── boot
│   └── grub
├── dev
├── etc
│   ├── rc.d
│   │   └── init.d
│   └── sysconfig
│       └── network-scripts
├── lib
│   └── modules
├── lib64
├── proc
├── sbin
├── sys
├── tmp
├── usr
│   └── local
│       ├── bin
│       └── sbin
└── var
    ├── lock
    ├── log
    └── run
24 directories, 0 files

4、文件的元数据信息有哪些?分别表示什么含义?如何查看?如何修改文件的时间戳信息?

[root@localhost var]# stat /etc/fstab
  File: ‘/etc/fstab’
  Size: 501       Blocks: 8          IO Block: 4096   regular file
Device: 803h/2051dInode: 33554562    Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Context: system_u:object_r:etc_t:s0
Access: 2016-08-19 22:57:40.645802142 -0700
Modify: 2016-08-09 09:06:24.459001039 -0700
Change: 2016-08-09 08:24:19.940440587 -0700
 Birth: -

修改时间戳方法如下:

touch [OPTION]... FILE...
-a 仅改变访问时间戳
-m 改变修改时间戳
-t [[CC]YY]MMDDhhmm[.ss] 修改为指定时间戳

5、如何定义一个命令的别名,如何在命令中引用另一个命令的执行结果

定义别名:alias ls='ls –color=auto'

取消别名:ualias

未写入配置文件/etc/bashrc或者~/.bashrc的别名只能在本次shell的生命周期中有效

命令替换:把命令中某个子命令替换为其执行结果的过程。

[root@localhost week2_test]# touch "$(date)"
[root@localhost week2_test]# ls
Fri Aug 19 23:31:03 PDT 2016

6、显示/var目录下所有以1开头,以一个小写字母结尾,且中间至少出现一位数字(可以有其他字符)的文件或目录

正则表达式实现:

[root@localhost var]# ls -d /var | grep ^1.*[[:digit:]]\+.*[[:lower:]]$

通配符实现:

[root@localhost var]# ls -d /var/1*[[:digit:]]*[[:lower:]]

7、显示/etc目录下,以任意一个数字开头,且以非数字结尾的文件夹或目录

[root@localhost var]# ls -d /etc/[[:digit:]]*[^[:digit:]]

8、显示/etc目录下,以非字母开头,后面跟一个字母以及其他任意长度任意字符的文件或目录

[root@localhost var]# ls -d /etc/[^[:alpha:]][[:alpha:]]*

9、在/tmp目录下创建以tfile开头,后面跟当前日期和时间的文件

[root@localhost tmp]# touch tfile-$(date +%Y-%m-%d-%H-%M-%S)

10、复制/etc目录下所有以p开头以非数字结尾的文件和目录到/tmp/mytest1目录中

find实现:

[root@localhost /]# find /etc -name "p*[^[:digit:]]" -type f -exec cp {} /tmp/mytest1/ \;
[root@localhost /]# find /etc -name "p*[^[:digit:]]" -type d -exec cp -r {} /tmp/mytest1/ \;

cp实现:

[root@localhost /]# cp -r /etc/p*[^[:digit:]] /tmp/mytest1

11、复制/etc目录下所有以.d结尾的文件或目录至/tmp/mytest2目录中

[root@localhost /]# cp -r /etc/*.d /tmp/mytest2

12、复制/etc目录下所有以l或者m或者n开头,以.conf结尾的文件至/tmp/mytest3目录中

[root@localhost /]# cp /etc/{l,m,n}*.conf /tmp/mytest3

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

(0)
zhangxiaolazhangxiaola
上一篇 2016-08-22
下一篇 2016-08-22

相关推荐

  • RPM的使用

    概述 RPM 是 Red Hat PackageManager 的缩写,本意是Red Hat 软件包管理,顾名思义是Red Hat 贡献出来的软件包管理;在Fedora 、Redhat、Mandriva、SuSE、YellowDog等主流发行版本,以及在这些版本基础上二次开发出来的发行版采用; RPM包里面都包含什么?里面包含可执行的二进制程序,这个程序和W…

    Linux干货 2016-02-14
  • MySQL高可用架构之MHA

    MySQL高可用架构之MHA 1、关于MHA MHA(Master HA)是一款开源的MySQL的高可用程序,它为MySQL主从复制架构提供了automating master failover功能。MHA在监控到master节点故障时,会提升其中拥有的最新数据的slave节点成为新的master节点,在此期间,MHA会通过其它从节点获取额外信息来避免一致性…

    Linux干货 2017-03-30
  • 安装CentOS 6.9与CentOS7.3

    今天学习了如何安装CentOS6.9与CentOS7.3. 安装CentOS6.9 首先打开虚拟机如下如所示: 然后点击创建新的虚拟机: 选择典型,然后点击下一步: 一般会选择稍后安装操作系统,然后点击下一步 客户机操作系统有很多,因为今天只安装CentOS 所以选择Linux 版本则选择CentOS 64 位 (因为CentOS7以上没有32位版本,只有C…

    2017-07-14
  • 系统自动化安装的实现及SELINUX的设置

    系统的自动化安装     anaconda:系统安装程序         tui:基于图形库curses的文本窗口         gui:图形窗口     装载根文件系统,并启动…

    Linux干货 2016-09-16
  • 网卡路由配置信息及偷懒用法

            对于初学Linux的人来说,配置网卡无疑是比较晕的,各种的配置文件,字段、命令等让人眼花撩乱。所以这一章主要给大多数还在网卡配置路由配置的同学们解惑一、网卡配置基本概念        …

    Linux干货 2017-05-08
  • 基于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

评论列表(1条)

  • 马哥教育
    马哥教育 2016-08-22 14:28

    写的很好,排版也很棒,加油,3大题2小题都看不到了