From: Moviuro Date: Wed, 3 Jun 2015 21:48:35 +0000 (+0200) Subject: zshrc: simplify cdt() X-Git-Tag: v0.12.0~2 X-Git-Url: https://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=46c2d1057e37452ce9d7af2ef8efce15806d07be zshrc: simplify cdt() --- 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