New-Cli-Installer/tests/unit-proccess-tailing.cpp

6 lines
181 B
C++
Raw Normal View History

2021-12-27 07:04:03 +08:00
#include "follow_process_log.hpp"
2021-12-27 02:42:19 +08:00
int main() {
2022-01-03 05:45:54 +08:00
tui::detail::follow_process_log_widget({"/bin/sh", "-c", "sleep 1 && echo \"I slept\" && sleep 1 && echo \"I slept twice\""});
2021-12-27 02:42:19 +08:00
}