From b627736ac69be4516360a9c166f8ccdec96d2830 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Thu, 9 May 2019 13:36:03 +0200 Subject: [PATCH] fixed filename Signed-off-by: 0xflotus <0xflotus@gmail.com> --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d012970..455c63c 100644 --- a/README.md +++ b/README.md @@ -2901,25 +2901,25 @@ echo 'hihihihi' | tee outputfile.txt ##### Show non-printing (Ctrl) characters with cat ```bash -cat -v filenme +cat -v filename ``` ##### Convert tab to space ```bash -expand filenme +expand filename ``` ##### Convert space to tab ```bash -unexpand filenme +unexpand filename ``` ##### Display file in octal ( you can also use od to display hexadecimal, decimal, etc) ```bash -od filenme +od filename ``` ##### Reverse cat a file ```bash -tac filenme +tac filename ``` ##### Reverse the result from `uniq -c` ```bash