<<<第四单元练习>>>
1.在student用户下执行find /etc -name passwd 命令,并管理其输出要求如下:
* 显示所有正确输出,屏蔽错误输出
* 保存正确数出到/mnt/find.out,错误数出到/mnt/find.err中
* 建立/mnt/find.all文件,并且保存所有输出到此文件中
* 再次保存所有输出到/mnt/find.all中,并且保持源文件内容
* 屏蔽此命令的所有输出
* 显示此命令的所有输出并保存输出到桌面上的任意文件中
* 保存正确输出到/mnt/find.out.1中,屏蔽错误输出
在Desktop下完成:
touch Testfind
find /etc/ -name passwd 2>Testfind(垃圾桶目录暂时用这个代替)
find /etc/ -name passwd 2>/mnt/find.err >/mnt/find.out
touch /mnt/find.all
find /etc/ -name passwd &>/mnt/find.all
find /etc/ -name passwd &>>/mnt/find.all
find /etc/ -name passwd &>Testfind(垃圾桶目录暂时用这个代替)
find /etc/ -name passwd |tee Testfind
touch /mnt/find.out.1
find /etc/ -name passwd 2>Testfind(暂代垃圾桶) >/mnt/find.out.1
2.处理文件在文件/usr/share/mime/packages/freedesktop.org.xml要求如下:
* 找到此文件中包含ich的行,并保存这些行到/root/lines中
cp /usr/share/mime/packages/freedesktop.org.xml .
mv freedesktop.org.xml freedesktop.org.txt
vim freedesktop.org.txt
/ich
cc-G-p-nn-....
保存到/root/lines
* 用vim替换掉/root/lines中的空格,但要保持文件中原有的内容
vim /root/lines
:%s/\ //g
原文地址:http://12120116.blog.51cto.com/12110116/1857415