6 lines
83 B
Bash
Executable file
6 lines
83 B
Bash
Executable file
#!/bin/sh -efu
|
|
# stdin stdout ...
|
|
|
|
exec < "$1"; shift
|
|
exec > "$1"; shift
|
|
exec "$@"
|