From 49cfe46eac61e3fd2fb6a103a073297ad85b780a Mon Sep 17 00:00:00 2001 From: nprimo Date: Tue, 4 Jun 2024 11:47:42 +0100 Subject: [PATCH] docs(displayfile): escape `!` from the subject example command --- subjects/displayfile/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/displayfile/README.md b/subjects/displayfile/README.md index fb4f9cf35..c3eb35e6a 100644 --- a/subjects/displayfile/README.md +++ b/subjects/displayfile/README.md @@ -9,7 +9,7 @@ Write a program that displays, on the standard output, the content of a file giv ```console $ go run . File name missing -$ echo "Almost there!!" > quest8.txt +$ echo 'Almost there!!' > quest8.txt $ go run . quest8.txt main.go Too many arguments $ go run . quest8.txt