TODO: remove the task for running external processes in gpiomon
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Sun, 8 Sep 2019 17:19:54 +0000 (19:19 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 10 Sep 2019 08:43:24 +0000 (10:43 +0200)
commit5ef0c231e1aff095aeabf44f477e41c23a99d21c
treebd3ac1a7bbb6ae561982b0be7cd3ec12efd86c23
parent9462caf743435c1deb83e0e48dfc8af3002bad61
TODO: remove the task for running external processes in gpiomon

This functionality can be achieved with a shell oneliner, for example:

  gpiomon --line-buffered --format="%o %e" 0 0 | while read line; \
do cut -d" " -f2; done

There's no need to add this to the program. It would make the code
much more complicated without any real benefit.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
TODO