mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
7 lines
124 B
Bash
7 lines
124 B
Bash
#!/bin/sh
|
|
if [ "$1" = "" -o ! -e "$1" ]; then
|
|
echo "no package supplied" 1>&2
|
|
exit 1
|
|
fi
|
|
rpm2cpio "$1" | bsdtar -xf -
|