cpio/man/cpio
Petr Šabata dce45e02bf RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/cpio#b2d7cef5976b300ce3f2580046e97b0124804777
2020-10-14 23:14:40 +02:00

17 lines
252 B
Bash
Executable File

#!/bin/bash
test -z "$cpio_binary" && {
echo >&2 "no \$cpio_binary set"
exit 1
}
case "$1" in
-h|--help)
$cpio_binary --help | sed 's/^ \([^[:space:]][^:]*\):\?$/\1:/'
;;
*)
$cpio_binary "$@"
;;
esac