10分ごとにsu cronとしてbashスクリプトを実行しています。スクリプトの上で私は宣言します:
#!/bin/bash
Crontabでは、/ bin/bashで実行しています。メインスクリプトから呼び出されるすべてのスクリプトで同じことを行います。
2つのスレッドが作成されていることに気付きました。
/bin/bash /main/script
/bin/sh -c /main/script
また、呼び出される他のすべてのスクリプトは、独自の単一スレッド(bashのみ)を取得します。
この動作について説明してもらえますか?
Cronはシェルを使用してコマンドを実行します。そのユーザーの場合は/bin/sh
、したがって、次のような行の場合:
* * * * * /bin/bash /some/script
Cronの実行:
/bin/sh -c '/bin/bash /some/script'
シェルセットが/bin/bash
、それは実行されます:
/bin/bash -c '/bin/bash /some/script
では、なぜbash -c
bashで処理しますか? Bashは、単一の単純なコマンドが与えられた場合、exec
ingおよびfork
ingの代わりにコマンドを直接exec
sします:
$ strace -fe clone,execve bash -c 'bash foo.sh'
execve("/bin/bash", ["bash", "-c", "bash foo.sh"], [/* 15 vars */]) = 0
execve("/bin/bash", ["bash", "foo.sh"], [/* 15 vars */]) = 0
clone(Process 466 attached
child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f93bda10a10) = 466
[pid 466] execve("/bin/true", ["/bin/true"], [/* 15 vars */]) = 0
[pid 466] +++ exited with 0 +++
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=466, si_status=0, si_utime=0, si_stime=0} ---
+++ exited with 0 +++
dash
、つまり/bin/sh
:
$ strace -fe clone,execve dash -c 'bash foo.sh'
execve("/bin/dash", ["dash", "-c", "bash foo.sh"], [/* 15 vars */]) = 0
clone(Process 473 attached
child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f7f31650a10) = 473
[pid 473] execve("/bin/bash", ["bash", "foo.sh"], [/* 15 vars */]) = 0
[pid 473] clone(Process 474 attached
child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f408d740a10) = 474
[pid 474] execve("/bin/true", ["/bin/true"], [/* 15 vars */]) = 0
[pid 474] +++ exited with 0 +++
[pid 473] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=474, si_status=0, si_utime=0, si_stime=0} ---
[pid 473] +++ exited with 0 +++
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=473, si_status=0, si_utime=0, si_stime=0} ---
+++ exited with 0 +++
ここで追加のクローンを見ることができます。