马哥教育网络班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

相关推荐

  • 实现基于MYSQL验证的vsftpd虚拟用户

    马哥教育面授21期 运维 vsftpd MySQL 说明:本实验在两台CentOS主机上实现,一台做为FTP服务器,一台做数据库服务器 一、安装所需要包和包组: 在数据库服务器上安装包: yum –y install mariadb-server mariadb-devel systemctl start mariad…

    Linux干货 2016-12-21
  • N22-第六周作业

    1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#; :%s@[[:space:]]\+@#&@g    2、复制/boot/grub/grub.conf至/tmp目录中,删除/tmp/grub.conf文件中的行首的空白字符; :%s#…

    Linux干货 2016-09-26
  • liunx文本处理三剑客及文本处理工具的使用与练习。

    linux文本处理三剑客: grep ==擅长过滤,把想要的或者不想要的分离开。linux三剑客 老三  -A: 除了显示匹配的一行之外,并显示该行之前的num行;-B:除了显示匹配的一行之外,并显示该行之后的num行;-C:除了显示匹配的一行之外,并显示该行之前后各num行     sed==擅长取行、替换。三剑客老…

    2017-07-28
  • CentOS6 ELK实现

    1 简介 我们来介绍Centos6.5基于SSL密码认证部署ELK(Elasticsearch 1.4.4+Logstash 1.4.2+kibana3),同时为大家介绍如何集合如上组件来收集日志,本章的日志收集主要为大家介绍SYSTEM日志收集. 集中化日志收集主要应用场景是在同一个窗口临时性或永久性鉴定分析系统,应用等各类日志,对用户提供极大便…

    Linux干货 2017-05-17
  • 压缩及解压缩工具

    压缩和解压缩工具      压缩比      目的:时间换空间      CPU的时间 –> 磁盘空间 常见的压缩及解压缩工具: compress/uncompress, .Z gzip/gunzip, .gz bzip2…

    Linux干货 2016-08-22
  • Linux http服务

                               Linux http服务   网络服务通信基础:   1、端口号就是进程标识,每个用户最多只能打开1024个进程。   2、MAC地址仅…

    系统运维 2016-11-18

评论列表(1条)

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

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