<<<第一单元练习题>>>
1.用student用户登陆系统图形界面
2.打开一个bash
[[email protected] Desktop]$ date
Mon Sep 26 18:44:38 EDT 2016
[[email protected] Desktop]$ DATE
bash: DATE: command not found...
Similar command is: ‘date‘
3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字)
passwd student
输入修改的密码,无显示
两次输入
4.显示当前系统时间
[[email protected] Desktop]$ date
Mon Sep 26 18:47:27 EDT 2016
5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识)
%r locale‘s 12-hour clock time (e.g., 11:11:04 PM)
[[email protected] Desktop]$ date +%r
07:09:11 PM
6.显示“/usr/bin/clean-binary-files”的文件类型
7.统计“/usr/bin/clean-binary-files”的文件大小
[[email protected] Desktop]$ file /usr/bin/clean-binary-files
/usr/bin/clean-binary-files: POSIX shell script, ASCII text executable
8.用快捷方式在shell中调用已经执行过的第4条命令
[[email protected] Desktop]$ history
1 su -
2 ifconfig
3 ssh [email protected]
4 rht-vmctl start all
5 poweroff
6 rht-vmctl start desktop
7 rht-vmctl view desktop
8 rht-vmctl start desktop
9 rht-vmctl view desktop
10 rht-vmctl start desktop
11 rht-vmctl view desktop
12 passwd -s
13 rht-vmctl reset desktop
14 rht-vmctl start desktop
15 rht-vmctl view desktop
16 rht-vmctl reset desktop
17 rht-vmclt start desktop
18 rht-vmctl start desktop
19 rht-vmctl reset desktop
20 rht-vmctl view desktop
21 gedit WJ
22 touch WJ
23 date
24 DATE
25 passwd -S student
26 passwd student
27 date
28 date +%H:%M:%S
29 date +%H:%M:%S AM/PM
30 man date
31 date -r
32 date %r
33 date %r +%H:%M:%S
34 date %r +%H:%M:%S
35 date +%H:%M:%S%r
36 cat /usr/bin/clean-binary-files
37 date +%r
38 man file
39 file /usr/bin/clean-binary-files
40 history
[[email protected] Desktop]$ !4
rht-vmctl start all
Error: desktop not started (is already running)
Starting server.
9.用快捷方式执行最近一条含有"date"关键字的命令
Ctrl+R+关键字 (此处我执行了date命令)
[[email protected] Desktop]$ date +%r
07:21:19 PM
<<<第二单元练习>>>
1.用命令和正则表达式按照要求建立文件
*)用一条命令建立12个文件WESTOS_classX_linuxY(X的数值范围为1-2,Y的数值范围为1-6)
[[email protected] Desktop]$ touch WESTOS_class{1..2}_linux{1..6}
*)这些文件都包含在root用户桌面的study目录中
[[email protected] Desktop]$ mkdir study
[[email protected] Desktop]$ mv WESTOS_class{1..2}_linux{1..6} study/
*)用一条命令建立8个文件redhat_versionX(x的范围为1-8)
[[email protected] Desktop]$ touch redhat_version{1..8}
*)redhat_virsionX这些文件都包含在/mnt目录中的VERSION中
[[email protected] Desktop]$ cd /mnt
[[email protected] mnt]$ mkdir VERSION
[[email protected] mnt]$ mv redhat_version{1..8} VERSION
2.管理刚才信建立的文件要求如下
*)用一条命令把redhat_versionX中的带有奇数的文件复制到桌面的SINGLE中
[[email protected] Desktop]$ touch redhat_version{1..8}
[[email protected] Desktop]$ mkdir SINGLE
[[email protected] Desktop]$ cp redhat_version{1,3,5,7} SINGLE
*)用一条命令把redhat_versionX中的带偶数数的文件复制到/DOUBLE中
[[email protected] Desktop]$ mkdir DOUBLE/
[[email protected] Desktop]$ cp redhat_version{2,4,6,8} DOUBLE
*)用一条命令把WESTOS_classX_linuxY中class1的文件一动到当前用户桌面的CLASS1中
*)用一条命令把WESTOS_classX_linuxY中class2的文件一动到当前用户桌面的CLASS2中
[[email protected] Desktop]$ touch WESTOS_class{1..2}_linux{1..6}
[[email protected] Desktop]$ mkdir CLASS1
[[email protected] Desktop]$ mkdir CLASS2
[[email protected] Desktop]$ mv WESTOS_class1* CLASS1
[[email protected] Desktop]$ mv WESTOS_class2* CLASS2
3.备份/etc目录中所有带有名字带有数字并且以.conf结尾的文件到桌面上的confdir中
[[email protected] Desktop]$ cp /etc/*[[:digit:]]*.conf.confdir/ ???
5.删掉刚才建立或者备份的所有文件
[[email protected] Desktop]$ rm -fr CLASS*
[[email protected] Desktop]$ rm -fr SINGLE
[[email protected] Desktop]$ rm -fr DOUBLE
<<<第四单元练习>>>
1.在student用户下执行find /etc -name passwd 命令,并管理其输出要求如下:
* 显示所有正确输出,屏蔽错误输出
find /etc -name passwd 2>/dev/null
* 保存正确数出到/mnt/find.out,错误数出到/mnt/find.err中
touch /home/student/Desktop/find.out
touch /home/student/Desktop/find.err
find /etc -namepasswd >/home/student/Desktop/find.out 2>/home/student/Desktop/find.err
* 建立/mnt/find.all文件,并且保存所有输出到此文件中
touch /mnt/find.all
find /etc -name passwd &>find.all
* 再次保存所有输出到/mnt/find.all中,并且保持源文件内容
find /etc -name passed &>>find.all
* 屏蔽此命令的所有输出
find /etc -name passed &>/dev/null
* 显示此命令的所有输出并保存输出到桌面上的任意文件中
find /etc -name passwd 2>&1 | tee file
* 保存正确输出到/mnt/find.out.1中,屏蔽错误输出
find /etc -name passwd >find.out.1 2>/dev/null
2.处理文件在文件/usr/share/mime/packages/freedesktop.org.xml要求如下:
* 找到此文件中包含ich的行,并保存这些行到/root/lines中
* 用vim替换掉/root/lines中的空格,但要保持文件中原有的内容