sh
和source
有什么区别?
source: source filename [arguments]
Read and execute commands from FILENAME and return. The pathnames
in $PATH are used to find the directory containing FILENAME. If any
ARGUMENTS are supplied, they become the positional parameters when
FILENAME is executed.
对于man sh
:
NAME
bash - GNU Bourne-Again SHell
SYNOPSIS
bash [options] [file]
COPYRIGHT
Bash is Copyright (C) 1989-2004 by the Free Software Foundation, Inc.
DESCRIPTION
Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file. Bash also incorporates
useful features from the Korn and C shells (ksh and csh).
Bash is intended to be a conformant implementation of the IEEE POSIX Shell and Tools specification (IEEE Working Group 1003.2).
当您调用source
或.
时(一个是另一个的别名。source
cmd 不是 POSIX - 一种害羞主义),您将 shell 脚本加载并执行到当前的shell 进程中。所以你可以
- 读取源脚本中设置的变量,
- 使用其中定义的函数。
- 如果脚本这样做,甚至可以执行分叉和/或子进程。
当您调用sh
时,您启动了一个分支(子进程或子进程),该分支运行新的/bin/sh
会话(这通常是指向bash
的符号链接)。在这种情况下,当子脚本终止时,子脚本设置的环境变量将被删除。
注意:sh
可能是指向另一个shell 的符号链接。
实用示例
例如,如果要通过特定方式更改当前工作目录,则无法执行
$ cat <<eof >myCd2Doc.sh
#!/bin/sh
cd /usr/share/doc
eof
$ chmod +x myCd2Doc.sh
这不会达到您的预期:
$ cd /tmp
$ pwd
/tmp
$ ~/myCd2Doc.sh
$ pwd
/tmp
因为当前工作的 DIR是环境的一部分,myCd2Doc.sh
将在子外壳中运行。
但:
$ cat >myCd2Doc.source <<eof
# Shell source file
myCd2Doc() {
cd /usr/share/doc
}
eof
$ . myCd2Doc.source
$ cd /tmp
$ pwd
/tmp
$ myCd2Doc
$ pwd
/usr/share/doc
看看mycd
功能!!(基于关联数组的 bash 完成)。
执行级别$SHLVL
$ cd /tmp
printf %b '4341/bin/bashnecho This is level 44SHLVL.n' >qlvl.sh
$ bash qlvl.sh
This is level 2.
$ source qlvl.sh
This is level 1.
递归(当脚本从自身运行时)
$ cat <<eoqlvl2 >qlvl2.sh
#!/bin/bash
export startLevel recursionLimit=5
echo This is level $SHLVL started:${startLevel:=$SHLVL}.
(( SHLVL < recursionLimit )) && ./qlvl2.sh
eoqlvl2
$ chmod +x qlvl2.sh
$ ./qlvl2.sh
This is level 2 started:2.
This is level 3 started:2.
This is level 4 started:2.
This is level 5 started:2.
$ source qlv2.sh
This is level 1 started:1.
This is level 2 started:1.
This is level 3 started:1.
This is level 4 started:1.
This is level 5 started:1.
再远一点
$ sed '$a ps --sid $SID fw' qlvl.sh >qlvl3.sh
$ chmod +x qlvl3.sh
$ export SID
$ read SID < <(ps ho sid $$)
$ echo $SID $$
8983 8983
(当前PID($$
==进程ID) 与SID(会话 ID)是相同的标识符。这并不总是正确的。
$ ./qlvl3.sh
This is level 2.
PID TTY STAT TIME COMMAND
8983 pts/10 Ss 0:00 /bin/bash
10266 pts/10 S+ 0:00 _ /bin/bash ./qlvl3.sh
10267 pts/10 R+ 0:00 _ ps --sid 8983 fw
$ . qlvl3.sh
This is level 1.
PID TTY STAT TIME COMMAND
8983 pts/10 Ss 0:00 /bin/bash
10428 pts/10 R+ 0:00 _ ps --sid 8983 fw
点.
是source
的别名。因此,两个命令之间的唯一区别slash
替换为space
。
最后的测试:
$ printf %b '4341/bin/bashnecho Ending this.nsle'
'ep 1;exit 0n' >finalTest.sh
$ bash finalTest.sh
Ending this.
$ source finalTest.sh
Ending this.
。您可能会注意到两种语法之间的行为不同。;-)
主要区别在于它们是在不同的进程中执行的。
因此,如果您source
执行cd
的文件foo
,则源 shell(例如终端中的交互式 shell)会受到影响(并且其当前目录将更改)
如果执行sh foo
则cd
不会影响源外壳,只有新创建的sh
进程正在运行foo
阅读高级 Bash 脚本指南。
这种差异并不是Linux特有的;每个Posix实现都会有它。
正如其他人所提到的,当你运行sh test.sh
时,test.sh
对你的 shell 环境所做的任何更改都不会在进程结束后保留。
但是,还要注意,环境中任何未导出的元素(例如,变量、别名和 shell 函数)在作为子进程执行(即使用sh test.sh
)时,test.sh
中的代码都不可用。
例如:
$ cat > test.sh
echo $foo
$ foo=bar
$ sh test.sh
$ . test.sh
bar
示例 2:
lap@my-ThinkPad:~$ cat test.sh
#!/bin/sh
cd /etc
lap@my-ThinkPad:~$ sh test.sh
lap@my-ThinkPad:~$ pwd
/home/savoury
lap@my-ThinkPad:~$ source test.sh
lap@my-ThinkPad:/etc$ pwd
/etc
lap@my-ThinkPad:/etc$
源(或 ) - 在当前 shell 中运行并更改其属性/环境。
shdo fork 并在子壳中运行,因此无法更改属性/环境。
例如
我的外壳脚本是 -
elite12!rg6655:~/sh_pr [33]$ cat changeDir.sh
#!/bin/bash
cd /home/elt/rg6655/sh_pr/justdir
pwd
echo $$
我目前的外壳 -
elite12!rg6655:~/sh_pr [32]$ echo $$
3272
我当前外壳的进程 ID 是 3272
使用源运行 -
elite12!rg6655:~/sh_pr [34]$ source changeDir.sh
/home/elt/rg6655/sh_pr/justdir
3272
elite12!rg6655:~/sh_pr/justdir
观察者两件事—— 1) 进程 ID (3272) 与我的 shell 相同,确认源在当前 shell 中执行。 2)CD命令工作,目录更改为justdir。
与sh一起跑步 -
elite12!rg6655:~/sh_pr [31]$ sh changeDir.sh
/home/elt/rg6655/sh_pr/justdir
13673
elite12!rg6655:~/sh_pr
在这种情况下,进程 ID (13673) 不同,目录保持不变,这意味着它在不同的进程或子 shell 中运行。
当你使用 sh 命令执行程序时:
- 您的终端将使用sh或Bourne Shell来执行程序。
- 创建一个新进程,因为 Bash 制作了自己的精确副本。 此子进程与其父进程具有相同的环境,只是进程 ID 号不同。(此过程称为分叉)
- 你需要有执行权限才能执行它(因为它是分叉的)
当您使用源命令时:
- 使用默认解释器执行程序
- 您在当前终端中执行进程(技术上您的 *nix 命令已解释)
- 由于程序将在当前终端中执行,因此您无需授予其执行权限