From 46c2d1057e37452ce9d7af2ef8efce15806d07be Mon Sep 17 00:00:00 2001 From: Moviuro Date: Wed, 3 Jun 2015 23:48:35 +0200 Subject: [PATCH] zshrc: simplify cdt() --- etc/zsh/zshrc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 8e1ec13..315cec7 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3137,10 +3137,8 @@ mkcd() { #f5# Create temporary directory and \kbd{cd} to it cdt() { - local t - t=$(mktemp -d) - echo "$t" - builtin cd "$t" + builtin cd "$(mktemp -d)" + builtin pwd } #f5# List files which have been accessed within the last {\it n} days, {\it n} defaults to 1 -- 2.1.4