iI wrote a todo list Scriptscript with "add","clear" and "find" argument. iI need to pass ana "done" argument and script find related row and replace its first column with another value. howHow can iI do that ? result
Result of script shows in the follow : 0,H,First Task 0,L,Second Task 0,M,Third Task and
0,H,First Task
0,L,Second Task
0,M,Third Task
and now i want to execute something like "./todo done 2 " ./todo done 2, and obtain the following result:
0,H,First Task
1,L,Second Task
0,M,Third Task
0,H,First Task
1,L,Second Task
0,M,Third Task