summaryrefslogtreecommitdiffstats
path: root/tests/vredir7.sub
blob: 8cb80eddbf3e7d6be8d0bd5ab234d8e9a4758616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
swizzle()
{
exec {fd[0]}<&0
exec {fd[1]}>&1

exec {stdin}<&${fd[0]}-
exec {stdout}>&${fd[1]}-
}

swizzle

echo $stdin $stdout

read line <&$stdin <<EOF
a
EOF

echo $line
echo $line >&$stdout

type swizzle

exit 0