X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/e45b0db3d66ca9e041622db3d801d026fb4d3724..33230b65afa1076218abff057d0bbcc7486af0a8:/.zsh/func/TS?ds=inline diff --git a/.zsh/func/TS b/.zsh/func/TS deleted file mode 100755 index 3075561..0000000 --- a/.zsh/func/TS +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# -# func/TS -# -# a convenient way to create an environment for collaborative testing -# -# Copyright © 1994–2017 martin f. krafft -# Released under the terms of the Artistic Licence 2.0 -# -# Source repository: http://git.madduck.net/v/etc/zsh.git -# - -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=" -%# " PS2= RPS1= script -c "zsh -f" -f -q "$filename" -ret=$? -echo "I: typescript is in $filename ." -return $ret -exit $ret