From 4e1da9c809cd49281bf762a2833f131baf21af02 Mon Sep 17 00:00:00 2001 From: Igor Shubovych Date: Wed, 10 Feb 2016 19:46:05 +0200 Subject: [PATCH] wc: add words example, update characters example --- pages/common/wc.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/common/wc.md b/pages/common/wc.md index 6a7096433..81a0ccb1b 100644 --- a/pages/common/wc.md +++ b/pages/common/wc.md @@ -6,7 +6,11 @@ `wc -l {{file}}` -- Count bytes in file: +- Count words in file: + +`wc -w {{file}}` + +- Count characters (bytes) in file: `wc -c {{file}}`