about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:33:40 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:33:40 +0000
commitfaea1b0df857331fd560ef05373f726a919a8e15 (patch)
tree4f804f97e9755e10eaf69adc42813e2a6275b418
parent5efb1e47cbc048b6566ae1eabea9ee95b14c9ac1 (diff)
downloadzsh-faea1b0df857331fd560ef05373f726a919a8e15.tar.gz
zsh-faea1b0df857331fd560ef05373f726a919a8e15.tar.xz
zsh-faea1b0df857331fd560ef05373f726a919a8e15.zip
moved to ./Test/D03procsubst.ztst
-rw-r--r--Test/12procsubst.ztst25
1 files changed, 0 insertions, 25 deletions
diff --git a/Test/12procsubst.ztst b/Test/12procsubst.ztst
deleted file mode 100644
index 1810f9178..000000000
--- a/Test/12procsubst.ztst
+++ /dev/null
@@ -1,25 +0,0 @@
-# Tests for process substitution: <(...), >(...) and =(...).
-
-%prep
-  mkdir procsubst.tmp
-  cd procsubst.tmp
-  print 'First\tSecond\tThird\tFourth' >FILE1
-  print 'Erste\tZweite\tDritte\tVierte' >FILE2
-
-%test
-  paste <(cut -f1 FILE1) <(cut -f3 FILE2)
-0:<(...) substitution
->First	Dritte
-
-  paste <(cut -f2 FILE1) <(cut -f4 FILE2) > >(sed 's/e/E/g' >OUTFILE)
-  sleep 1	# since the sed is asynchronous
-  cat OUTFILE
-0:>(...) substitution
->SEcond	ViErtE
-
-  diff =(cat FILE1) =(cat FILE2)
-1:=(...) substituion
->1c1
->< First	Second	Third	Fourth
->---
->> Erste	Zweite	Dritte	Vierte