Skip to:
As an application developer, it costs a lot of time to
check rid with afm-util ps
kill the process with afm-util kill rid
So I would like afm-util to allow kill running instance(s) by id. e.g.
$ afm-util killall mediaplayer@0.1 $ afm-util pkill mediaplayer@0.1
Then, we can make the workflow much easier with e.g. a script like below
app_name=$1 app_version=$2 afm-util killall $app_name@$app_version afm-util rm $app_name@$app_version afm-util add $app_name-$app_version.wgt afm-util run $app_name@$app_version
Close for FF RC1
@jose bollo Which fix in gerrit?
merged in master
I integrated the change in the sources.
Will land soon in the distro.
I 100% agree with you.
As an application developer, it costs a lot of time to
check rid with afm-util ps
kill the process with afm-util kill rid
So I would like afm-util to allow kill running instance(s) by id. e.g.
$ afm-util killall mediaplayer@0.1 $ afm-util pkill mediaplayer@0.1
Then, we can make the workflow much easier with e.g. a script like below
app_name=$1 app_version=$2 afm-util killall $app_name@$app_version afm-util rm $app_name@$app_version afm-util add $app_name-$app_version.wgt afm-util run $app_name@$app_version