5 lines
105 B
Bash
Executable file
5 lines
105 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ "$#" = 0 ] && echo 'Missing command!' >&2 && exit 1
|
|
|
|
script -O /dev/null -E never -qfc "$*"
|