dce45e02bf
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/cpio#b2d7cef5976b300ce3f2580046e97b0124804777
17 lines
252 B
Bash
Executable File
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
|