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.即時(shí)文件定向符
即時(shí)文件的形式是:
命令 [參數(shù)]<< 標(biāo)記符
輸入行
…
標(biāo)記符
注意:標(biāo)記符要成對(duì)出現(xiàn)
例如:
mail $1 << !!
Best wishes to you on your birthday .
!!
4.5.4 注釋、管道線(xiàn)和后臺(tái)命令
1.注釋
#!/bin/bash
# If no arguments, then listing the current directory.
# Otherwise, listing each subdirectory.
2.管道線(xiàn)
ls -l $HOME | wc –l
ls | grep m?.c | wc –l
3.后臺(tái)命令
$ gcc m1.c&