From c3b51269ada09170eb4f6ebb074539c6255aac4e Mon Sep 17 00:00:00 2001 From: Nikita Bishonen Date: Sun, 5 Jan 2025 19:19:37 +0000 Subject: [PATCH] Update nix-tooling.md Fix the command, tail for some reason results in empty result. --- microbit/src/06-serial-communication/nix-tooling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microbit/src/06-serial-communication/nix-tooling.md b/microbit/src/06-serial-communication/nix-tooling.md index f4f0f4717..6f221f1d8 100644 --- a/microbit/src/06-serial-communication/nix-tooling.md +++ b/microbit/src/06-serial-communication/nix-tooling.md @@ -7,7 +7,7 @@ should see a new TTY device appear in `/dev`. ``` console $ # Linux -$ dmesg | tail | grep -i tty +$ dmesg | grep -i tty [63712.446286] cdc_acm 1-1.7:1.1: ttyACM0: USB ACM device ```