From a8ed1e249cb6917720c3f0c60048d7b0dfbbccb0 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 12:33:49 +0000 Subject: moved from ./Test/12procsubst.ztst --- Test/D03procsubst.ztst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Test/D03procsubst.ztst diff --git a/Test/D03procsubst.ztst b/Test/D03procsubst.ztst new file mode 100644 index 000000000..1810f9178 --- /dev/null +++ b/Test/D03procsubst.ztst @@ -0,0 +1,25 @@ +# 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 -- cgit 1.4.1