From ef5e7e009e1b6029b500b3617c56a28482201510 Mon Sep 17 00:00:00 2001 From: Luke Yeager Date: Tue, 5 Jan 2016 15:26:19 -0800 Subject: [PATCH] Typo in One Liners - "If want to" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5a963e..c2407c4 100644 --- a/README.md +++ b/README.md @@ -310,7 +310,7 @@ A few examples of piecing together commands: awk '{ x += $3 } END { print x }' myfile ``` -- If want to see sizes/dates on a tree of files, this is like a recursive `ls -l` but is easier to read than `ls -lR`: +- To see sizes/dates on a tree of files, this is like a recursive `ls -l` but is easier to read than `ls -lR`: ```sh find . -type f -ls ```