新手看招 Linux Shell编程简单一例
时间:2008-03-07 来源:wstczyl
例子没有先后顺序:每个例子可能有多种方法 1.
在/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 |