[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
rta RefName TaskName [description]
rta
function is used to add a new task to a referential.
The parameters are the referential name and the name of the new task.
The description of the task can be passed as third parameter.
ra
.
Two tasks are created in this referential with the rta
command :
`my_task_1' and `my_task_2'.
For `my_task_2' creation, a description is passed as third parameter.
rtc
is used before and after tasks creation to print tasks count.
rtl
is used to print task list.
$ dio87d -d $ dio87c -- ra my_ref $ dio87c -- rtc my_ref 0 $ $ dio87c -- rta my_ref my_task_1 $ dio87c -- rta my_ref my_task_2 "a second task" $ $ dio87c -- rtc my_ref 2 $ dio87c -- rtl -d my_ref my_task_1 my_task_2 a second task $ |