linux常用命令训练第二章答案

第二章答案(不保证正确,欢迎大佬指证)

(1)
chomd  u+rw,o+r a.c
find . -name "*.o" -type f -exec rm -rf {} \;
find /tmp/src -name "yy1*" -atime +5 -exec cp /tmp/old {} \;
mkdir -p /tmp/src/aaa
find tmp/src -atime -8 -exec grep hello {} \ -print;
(2)
文件所有者和同组用户添加对file1,file2写的权限,其他用户取消对file1,file2写的权限
查找并删除用户f2000/home目录下最近七天使用的所有文件
对当前用户bak目录下面的所有文件,赋予不可读不可写不可执行权限
(3)
ls -l /tmp | tail -3
echo $PATH
find /etc/passwd -name "root" -exec cp /home/yy1/rootpass {} \;
find ~ -name "myfile" >>/root/test &
gedit & exit             
pstree xH
ifconfig 192.168.2.3 255.255.255.0 192.168.2.254
arp -s 192.168.3.4 12-34-56-78-9A-BC
cal -3 8 2015
(4)
对变量名为HELLO的变量赋以hello world的值
统计在home/yy1目录下MyPeom.txt不同于MyPeomcnt.txt的单词数目
显示所有进程的信息
删除ARP信息:IP地址:192.168.0.2

你可能感兴趣的:(linux)