I have written a Korn Shell script like this:
a=1
while a=1
do
for i in a b c
do
touch $i
rm $i
done
done
during the running of the scripts, i execute "ps -ef|grep rm" repeatedly to observe the "rm" process.
i found :
root 12716 11576 0 00:51:39 pts/2 0:00 [rm]
but suddenly the "[rm]" would disappear and soon later it will emerge again.
I want to understand what does "[rm]" mean ?