||
在/home/codfei以及它的子目录中查找含有codfei的所有文件 |
[root@localhost Linuxos]# grep -rsn "codfei" /home/ |
[root@localhost Unix_c]# find /home/codfei/ -type f | while read i;do grep -n codfei $i && echo $i && echo -----;done |
2.
设计一个Shell程序,在/userdata目录下建立50个目录,即user1~user50,并设置每个目录的权限为 rwxr-xr-- |
方法一:
#!/bin/bash |
方法二:
#!/bin/bash |
方法三:
用for或while循环
#!/bin/bash |
#!/bin/bash |
方法四:
#!/bin/sh |
3.
在linux系统中有个文件,文件名为ABC.txt。如何将当前的系统时间追加到此文件行首? |
echo -e "`date`\n`cat ABC.txt`" > ABC.txt |