aboutsummaryrefslogtreecommitdiff
path: root/aux/redir_exe.sh
blob: 3ab78e641c224afdd55a49d57a420a90d63d12e5 (plain)
1
2
3
4
5
6
#!/bin/sh -efu
# stdin stdout ...

exec < "$1"; shift
exec > "$1"; shift
exec "$@"