From 4e462ce2a88c8eea44316e51dc56fd4a361b7111 Mon Sep 17 00:00:00 2001 From: Edgar Hipp Date: Wed, 22 Apr 2015 10:14:51 +0200 Subject: [PATCH] sed -n outputs nothing (silent mode) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index abca7ca..4dbeae9 100644 --- a/Examples.md +++ b/Examples.md @@ -257,7 +257,7 @@ z() { } zz() { - cd "$(_z -l 2>&1 | sed -n 's/^[0-9,.]* *//' | fzf -q $_last_z_args)" + cd "$(_z -l 2>&1 | sed 's/^[0-9,.]* *//' | fzf -q $_last_z_args)" } ```