cd ..
帶有控制結(jié)構(gòu)的shell程序(文件名為ex2)。
$ cat ex2
#!/bin/bash
# If no arguments, then listing the current directory.
# Otherwise, listing each subdirectory.
if test $# = 0
then ls .
else
for i
do
ls -l $i | grep '^d'
done
fi
4.5.4 注釋、管道線和后臺命令
1.注釋
#!/bin/bash
# If no arguments, then listing the current directory.
# Otherwise, listing each subdirectory.
2.管道線
ls -l $HOME | wc –l
ls | grep m?.c | wc –l
3.后臺命令
$ gcc m1.c&