From 238ffea84527ba48c726087e5ba689515856fcf9 Mon Sep 17 00:00:00 2001 From: Saintil Dit Laguerre Donfred Date: Sat, 23 Mar 2019 21:13:46 +0100 Subject: [PATCH] Create wc basch command (#33424) --- guide/english/bash/bash-wc/index.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 guide/english/bash/bash-wc/index.md diff --git a/guide/english/bash/bash-wc/index.md b/guide/english/bash/bash-wc/index.md new file mode 100644 index 0000000000..73c06ae78f --- /dev/null +++ b/guide/english/bash/bash-wc/index.md @@ -0,0 +1,17 @@ +--- +title: Bash wc +--- + ## Bash command: wc + `wc` is used to display newline, byte, word counts of a file. + ### Usage + ``` + wc [OPTION]... [FILE]... + ``` + Here are some helpful options for its use : + - `-c` to print the bytes counts. +- `-w` to print the word counts. +- `-m` to print the character counts. + +### More Information +* run `man wc` to get a list of all options for this command + * [Wikipedia](https://en.wikipedia.org/wiki/Wc_(Unix))