From a777794f6508c654218aae02332a502399bd8018 Mon Sep 17 00:00:00 2001 From: Ben S Date: Mon, 9 Feb 2015 16:36:51 +0000 Subject: [PATCH] Change time option's description --- README.md | 1 + src/options.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 436a6dd..a51765d 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ exa is a replacement for `ls` written in Rust. - **-R**, **--recurse**: recurse into subdirectories - **-s**, **--sort=(field)**: field to sort by - **-S**, **--blocks**: show number of file system blocks +- **-t**, **--time**: which timestamp to show for a file - **-x**, **--across**: sort multi-column view entries across You can sort by **name**, **size**, **ext**, **inode**, or **none**. diff --git a/src/options.rs b/src/options.rs index 2ee43d1..961bed9 100644 --- a/src/options.rs +++ b/src/options.rs @@ -56,7 +56,7 @@ impl Options { opts.optflag("R", "recurse", "recurse into directories"); opts.optopt ("s", "sort", "field to sort by", "WORD"); opts.optflag("S", "blocks", "show number of file system blocks"); - opts.optopt ("t", "time", "timestamp field to show", "WORD"); + opts.optopt ("t", "time", "which timestamp to show for a file", "WORD"); opts.optflag("T", "tree", "recurse into subdirectories in a tree view"); opts.optflag("x", "across", "sort multi-column view entries across"); opts.optflag("?", "help", "show list of command-line options");