- 论坛徽章:
- 0
|
系统SUN5.9,写了一个shell脚本getdir.sh,如下:
#!usr/bin/sh
function mkFile
{
for i in *
do
if test -d $i; then
cd $i
echo "mkdir -p" `pwd` >> /usr/mkalldir.sh
mkFile
cd ..
fi
done
}
echo "now is getting dirctory structure! ......"
mkFile
在/usr目录下面,执行$sh ./getdir.sh
结果如下:
./getdir.sh: function: not found
./getdir.sh: mkFile: not found
...............
now is getting dirctory structure! ......
./getdir.sh: mkFile: not found
mkalldir.sh里面只有一层目录
但是在cygwin环境下面执行良好,没有任何问题
其实也可以如下解决:
find . -type d -print| awk '{print "mkdir -p", $1}' >> /usr/mkalldir.sh
请指点! |
|