aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-redir/redir_exec2.tests
blob: 0af7675921e9d5faccca334b4b204d770245de0c (plain)
1
2
3
4
5
6
7
8
9
10
cd /proc/$$
exec 5>/dev/null
exec 4>/dev/null
exec 3>/dev/null
ls -1 fd/5
ls -1 fd/4
ls -1 fd/3
exec 5>&-
test -e fd/5 && echo BUG
echo One:$?