From 23176b30c03ba05613bab20d8f4c3c08d9306b33 Mon Sep 17 00:00:00 2001 From: Morgan Wattiez Date: Sun, 4 Aug 2019 15:09:22 +0200 Subject: [PATCH] sorting do not return best results --- dot_zsh_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_zsh_functions b/dot_zsh_functions index 1f5202a..b75829c 100644 --- a/dot_zsh_functions +++ b/dot_zsh_functions @@ -78,5 +78,5 @@ function istherenewissues() { echo "$LASTISSUE" > .newjiraissue } function greppagedate() { - curl -sSL "$*" | \grep datetime | \grep -Eo '[[:digit:]]{4}' | sort -n | head -n1 + curl -sSL "$*" | \grep datetime | \grep -Eo '[[:digit:]]{4}' | head -n1 }