From a020a2e681930031aff3d20b0f670c7a59a2db50 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 12 May 2008 18:44:45 +0200 Subject: [PATCH] output filename before typescript --- .zsh/func/TS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.zsh/func/TS b/.zsh/func/TS index 19d2237..0a51ab1 100755 --- a/.zsh/func/TS +++ b/.zsh/func/TS @@ -13,8 +13,9 @@ local topic filename ret topic="${(j:_:)@}" filename="${TMPDIR:-/tmp}/script.${topic:-$LOGNAME}.$$.$(date +%Y%m%d.%H%M)" +echo "I: writing typescript to $filename ..." >&2 PS1="%# " script -c "zsh -f" -f -q "$filename" ret=$? -echo "$filename" +echo "I: typescript is in $filename ." return $ret exit $ret -- 2.39.2