Chinaunix

标题: shell脚本的当前目录问题:if语句切换目录,语句结束之后无效吗? [打印本页]

作者: little_tony    时间: 2014-08-27 14:59
标题: shell脚本的当前目录问题:if语句切换目录,语句结束之后无效吗?
本帖最后由 little_tony 于 2014-08-27 15:02 编辑

一,我的top目录是:/home/ftp-mxy/test-dir,其目录结构为:

ftp-mxy@ubuntu:~/test-dir$ tree .
.
├── config2
├── config3
├── log
├── test-subdir1
│   └── log
└── test-subdir2

二,一个验证脚本:config2
#!/bin/sh

export CURDIR="$(/bin/pwd)"
echo  "当前目录是:$CURDIR"

TOPDIR=/home/ftp-mxy/test-dir
DIR1=/home/ftp-mxy/test-dir/test-subdir1
DIR2=/home/ftp-mxy/test-dir/test-subdir2



for valdir in $DIR1 $DIR2; do
(
        export CURDIR="$(/bin/pwd)"
        echo  "FOR语句中,IF语句之前,valdir=$valdir当前目录是:$CURDIR"

        if [ -f $valdir/log ]; then
                                tempdir=$valdir
                                cd $tempdir
                                export CURDIR="$(/bin/pwd)"
                                echo  "FOR语句中,IF语句之中,valdir=$valdir当前目录是:$CURDIR"
                                $tempdir/log
        fi

        export CURDIR="$(/bin/pwd)"
        echo  "FOR语句中,IF语句之后,valdir=$valdir当前目录是:$CURDIR"
)
        done
export CURDIR="$(/bin/pwd)"
echo  "FOR之后,IF语句之后,当前目录是:$CURDIR"


三,log文件脚本内容:
#!/bin/sh

echo "---------------这是test-dir1的log文件"



四:运行结果:
ftp-mxy@ubuntu:~/test-dir$ ./config2
当前目录是:/home/ftp-mxy/test-dir
FOR语句中,IF语句之前,valdir=/home/ftp-mxy/test-dir/test-subdir1当前目录是:/home/ftp-mxy/test-dir
FOR语句中,IF语句之中,valdir=/home/ftp-mxy/test-dir/test-subdir1当前目录是:/home/ftp-mxy/test-dir/test-subdir1
---------------这是test-dir1的log文件
FOR语句中,IF语句之后,valdir=/home/ftp-mxy/test-dir/test-subdir1当前目录是:/home/ftp-mxy/test-dir/test-subdir1
FOR语句中,IF语句之前,valdir=/home/ftp-mxy/test-dir/test-subdir2当前目录是:/home/ftp-mxy/test-dir
FOR语句中,IF语句之后,valdir=/home/ftp-mxy/test-dir/test-subdir2当前目录是:/home/ftp-mxy/test-dir
FOR之后,IF语句之后,当前目录是:/home/ftp-mxy/test-dir
ftp-mxy@ubuntu:~/test-dir$

五:结果:
由上面的运行结果第一次FOR循环,cd进了目录test-subdir1
可是IF语句结束之后,第二次FOR循环开始时怎么当前目录又变为顶层test-dir

请问shell脚本中有什么这方面的规律与机制吗?
作者: love_shift    时间: 2014-08-27 15:04
帮顶下, 我这种粗心的人看不下去~
作者: pipal_zh    时间: 2014-08-27 15:27
应该是括号的问题,把do后面的括号去掉。
作者: chengchow    时间: 2014-08-27 15:45
本帖最后由 chengchow 于 2014-08-27 15:46 编辑

粗略看了下,问题挺多了,楼主刚学写脚本吧
1. for 语句do开始,done结束,不需要()
2. if 语句$valdir这个变量哪里定义的,而且建议用"$valdir/log"
作者: pipal_zh    时间: 2014-08-27 15:58
()表示命令组。在括号中的命令列表, 将会作为一个子shell来运行.
在括号中的变量,由于是在子shell中,所以对于脚本剩下的部分是不可用的. 父进程, 也就是脚本本身, 将不能够读取在子进程中创建的变量, 也就是在子shell中创建的变量.

验证
[root@localhost ~]# a=123
[root@localhost ~]# (export a=321)
[root@localhost ~]# echo $a
123
[root@localhost ~]#
作者: little_tony    时间: 2014-08-27 16:32
回复 5# pipal_zh


    原来如此啊,豁然开朗!
作者: little_tony    时间: 2014-08-27 16:34
chengchow 发表于 2014-08-27 15:45
粗略看了下,问题挺多了,楼主刚学写脚本吧
1. for 语句do开始,done结束,不需要()
2. if 语句$valdir这 ...


呵呵,的确是刚接触,在读QT的脚本,里面也是写了小括号的,我是依样画葫芦,也在上面写了个小括号,所以出现了上面的问题。
作者: blackold    时间: 2014-08-27 16:34
放到()里面就无效了。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2