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