> Default example:
>
> printf("%s | %s | %s | %s", load, fs_usage, batt, time);
>
> Customized version:
>
> printf("%s | %s | %s", fs_usage, load, batt);
I don't see the point of doing anything but this. Having this as a
link in config.h could work no?
#define OUTPUT printf("%s", load);
then just call OUTPUT in your script
