mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
9 lines
139 B
Bash
9 lines
139 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ "$1" = "" ]; then
|
||
|
echo "usage: rpmextract package_name" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
@rpm@/bin/rpm2cpio "$1" | @cpio@/bin/cpio -idv
|