在后台启动脚本时,我会运行两个进程

时间:2013-12-11 14:59:44

标签: linux bash shell process background-process

我遇到了一个让我烦恼的奇怪场景。

我有一个脚本,我在后台启动了&
例如:

root@# some_script.sh &

运行之后,我做了一个ps -ef | grep some_script我看到两个进程正在运行,其中第二个进程不断获得一个不同的PID,但是它的父进程是我开始的进程(就像父进程正在生成死掉的子进程 - 但这从未写入代码中)。 例如:

root@# ps -ef | grep some_script.sh
root      4696 17882  0 13:30 pts/2    00:00:00 /bin/bash ./some_script.sh
root      4778  4696  0 13:30 pts/2    00:00:00 /bin/bash ./some_script.sh
root@# ps -ef | grep some_script.sh
root      4696 17882  0 13:30 pts/2    00:00:00 /bin/bash ./some_script.sh
root      4989  4696  0 13:30 pts/2    00:00:00 /bin/bash ./some_script.sh

这里给出了什么?它似乎也搞乱了脚本的输出和功能,并且基本上使它成为一个永无止境的过程(当我在脚本中定义了一个开始和停止时)。

脚本: `     #! /斌/庆典

# Set Global Variables
LOGDIR="/srv/script_logs"
OUTDIR="/srv/audits"
BUCKET_LS=$OUTDIR"/LSOUT_"$i"_"$(date +%d%b%Y)".TXT"
MYCMD1="aws s3api list-objects --bucket viddler-flvs"
MYCMD2="--starting-token"
MAX_ITEMS="--max-items 10000"
MYSTARTING_TOKEN='""'
rm tokenlog.txt flv_out.txt

while [[ $MYSTARTING_TOKEN != "null" ]]
do
# First - Get the token for the next batch
CMD_PRE="$MYCMD1 $MAX_ITEMS $MYCMD2 $MYSTARTING_TOKEN"
MYSTARTING_TOKEN=($($CMD_PRE | jq -r .NextToken))
echo $MYSTARTING_TOKEN >> tokenlog.txt
# Now - get the values of the files for the existing batch
# First - re-run the batch and get the file values we want
MYOUT2=$($CMD_PRE | (jq ".Contents[] | {Key, Size, LastModified,StorageClass }"))
echo $MYOUT2 | sed 's/[{},"]//g;s/   /\n/g;s/StorageClass://g;s/LastModified://g;s/Size://g;s/Key://g;s/^ *//g;s/ *$//g' >> flv_out.txt
#echo $STARTING_TOKEN
done

`

1 个答案:

答案 0 :(得分:3)

我猜你有

(
some shell instructions
)

你的.sh中 此语法在新进程中执行命令(但命令行将相同)。