From 79ac422bbeb471af384b1740d8887f680cfa2e51 Mon Sep 17 00:00:00 2001 From: Sam Umbach Date: Tue, 26 Jun 2018 11:45:17 -0400 Subject: [PATCH] Fix minor typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3aa6406..82a4813 100644 --- a/README.md +++ b/README.md @@ -1238,8 +1238,8 @@ rm -rf ~/Downloads/{Movies,Music,ISOS} | Expression | What does it do? | | ---------- | ---------------- | | `file -ef file2` | If both files refer to the same inode and device numbers. -| `file -nt file2` | If `file` is newer than `file2` (*uses modification ime*) or `file` exists and `file2` does not. -| `file -ot file2` | If `file` is older than `file2` (*uses modification ime*) or `file2` exists and `file` does not. +| `file -nt file2` | If `file` is newer than `file2` (*uses modification time*) or `file` exists and `file2` does not. +| `file -ot file2` | If `file` is older than `file2` (*uses modification time*) or `file2` exists and `file` does not. ## Variable Conditionals