コードをバックグラウンドで実行するにはどうすればよいですか?

コードをバックグラウンドで実行するにはどうすればよいですか?

別のスクリプトを使用する代わりに、バックグラウンドでコードを実行できますか?

[sesiv@itseelm-lx4151 ~]$ cat ./testback2
#!/bin/bash
start_time=$(date +%s)

for i in {1..5}
do
./testscript &
done
wait

        finish_time=$(date +%s)
        seconds=$((finish_time - start_time))
        hours=$((seconds / 3600))
        seconds=$((seconds % 3600))
        minutes=$((seconds / 60))
        seconds=$((seconds % 60))
        echo "Time Taken :"
        echo "$hours hour(s) $minutes minute(s) $seconds second(s)"

[sesiv@itseelm-lx4151 ~]$ ./testback2
sleeping 22436
sleeping 22438
sleeping 22440
sleeping 22442
sleeping 22435
Time Taken :
0 hour(s) 0 minute(s) 3 second(s)

以下のようなことを試しましたが、親プロセス ID が返されます。上記のような 5 つの異なる子プロセス ID を期待していました。ただし、ここでのタイミングは 3 秒のみです。

#!/bin/bash
start_time=$(date +%s)
fun() {
echo "$1 $$"
sleep 3
}


for i in {1..5}
do
fun sleeping &
done
wait

        finish_time=$(date +%s)
        seconds=$((finish_time - start_time))
        hours=$((seconds / 3600))
        seconds=$((seconds % 3600))
        minutes=$((seconds / 60))
        seconds=$((seconds % 60))
        echo "Time Taken :"
        echo "$hours hour(s) $minutes minute(s) $seconds second(s)"

output :
sleeping 22028
sleeping 22028
sleeping 22028
sleeping 22028
sleeping 22028
Time Taken :
0 hour(s) 0 minute(s) 3 second(s)

注:これはtestscriptコードです

#!/bin/bash
fun() {
echo "$1 $$"
sleep 3
}

fun sleeping

答え1

bash が新しいプロセスを作成しても、 の古い値$$が保持されることがあります。$BASHPID代わりに試してください。

答え2

質問を理解したかどうかわかりませんが、サブシェルを使用できます。

for i in {1..5}
do
 ( # bash code
 ) &
done

内部のbashコードは()同じスクリプト内にありますが、サブシェルで実行されます。

答え3

$$スクリプトを実行している元のシェル プロセスの PID です。展開を実行しているシェル プロセスの PID ではありません。$$サブシェルでは変更されません。

サブシェルの PID が必要な場合は、 を実行するのが移植可能な方法ですsh -c 'echo $PPID'。bash ≥4 では、展開を実行するシェル プロセスの PID はBASHPIDマジック変数にあります。

fun() {
  if [ -n "$BASHPID" ]; then
    echo "$1 $BASHPID"
  else
    echo "$1 $(sh -c 'echo $PPID')"
  fi
  sleep 3
}

答え4

正しいかどうかはわかりませんが、bash 3x の bashpid をエミュレートするためにこれを実行したところ、驚くべきことに結果は良好でした。

[aehj@itseelm-lx4151 ~]$ cat t
#!/bin/bash
start_time=$(date +%s)
fun() {
bashpid=`cut -d " " -f 4 /proc/self/stat`
echo "$1 $bashpid"
sleep 3
}

echo $$
for i in {1..5}
do
fun sleeping &
done
wait

        finish_time=$(date +%s)
        seconds=$((finish_time - start_time))
        hours=$((seconds / 3600))
        seconds=$((seconds % 3600))
        minutes=$((seconds / 60))
        seconds=$((seconds % 60))
        echo "Time Taken :"
        echo "$hours hour(s) $minutes minute(s) $seconds second(s)"
[aehj@itseelm-lx4151 ~]$ ./t
25578
sleeping 25580
sleeping 25583
sleeping 25586
sleeping 25589
sleeping 25592
Time Taken :
0 hour(s) 0 minute(s) 3 second(s)

別の方法 :

[aehj@itseelm-lx4151 ~]$ cat u
#!/bin/bash
start_time=$(date +%s)

echo $$
for i in {1..5}
do
{
        fun() {
        BASHPID=`cut -d " " -f 4 /proc/self/stat`
        echo "$1 $BASHPID"
        sleep 3
        }
        fun sleeping
} &

done
wait

        finish_time=$(date +%s)
        seconds=$((finish_time - start_time))
        hours=$((seconds / 3600))
        seconds=$((seconds % 3600))
        minutes=$((seconds / 60))
        seconds=$((seconds % 60))
        echo "Time Taken :"
        echo "$hours hour(s) $minutes minute(s) $seconds second(s)"
[aehj@itseelm-lx4151 ~]$ ./u
25635
sleeping 25637
sleeping 25640
sleeping 25643
sleeping 25646
sleeping 25648
Time Taken :
0 hour(s) 0 minute(s) 4 second(s)

関連情報