aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-03 16:14:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-03 16:14:37 +1200
commit58601f073491950e7d18cbaaff7557e0b737289c (patch)
tree2ba0d258d67b4f0f6511d28c39063b0d8817aa78
parentUse self var in tlcs(1) (diff)
downloaddotfiles-58601f073491950e7d18cbaaff7557e0b737289c.tar.gz
dotfiles-58601f073491950e7d18cbaaff7557e0b737289c.zip
Remove unneeded quoting in tlcs(1)
-rwxr-xr-xbin/tlcs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/tlcs b/bin/tlcs
index 12cd2c8e..8ba6cefc 100755
--- a/bin/tlcs
+++ b/bin/tlcs
@@ -79,7 +79,7 @@ td=$(mktd "$self") || exit
# Execute the command, passing stdout and stderr to tl(1) calls as appropriate
# via named pipes
-out="$td"/out err="$td"/err
+out=$td/out err=$td/err
mkfifo -- "$out" "$err" || exit
tl -p "$out_pref" -s "$out_suff" < "$out" &
tl -p "$err_pref" -s "$err_suff" < "$err" &