Przeglądaj źródła

Merge pull request #10 from japaric/tail

watch tail -> tail -f
Jorge Aparicio 8 lat temu
rodzic
commit
6d79132f08
1 zmienionych plików z 6 dodań i 4 usunięć
  1. 6 4
      src/lib.rs

+ 6 - 4
src/lib.rs

@@ -57,12 +57,10 @@
 //! ```
 //!
 //! The OpenOCD logs will be redirected to `/tmp/openocd.log`. You can view
-//! those logs in "real time" using `watch` + `tail`
+//! those logs in "real time" using `tail`
 //!
 //! ``` text
-//! $ watch 'tail /tmp/openocd.log'
-//! Every 2.0s: tail /tmp/openocd.log
-//!
+//! $ tail -f /tmp/openocd.log
 //! Info : Unable to match requested speed 1000 kHz, using 950 kHz
 //! Info : Unable to match requested speed 1000 kHz, using 950 kHz
 //! Info : clock speed 950 kHz
@@ -71,6 +69,10 @@
 //! Info : nrf51.cpu: hardware has 4 breakpoints, 2 watchpoints
 //! ```
 //!
+//! Alternatively you could omit the `-l` flag from the `openocd` call, and the
+//! `tail -f` command but the OpenOCD output will have intermingled in it logs
+//! from its normal operation.
+//!
 //! Then, we run the program:
 //!
 //! ``` text