0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.148.105.152


Current Path : /proc/thread-self/root/snap/core/16928/usr/bin/
Upload File :
Current File : //proc/thread-self/root/snap/core/16928/usr/bin/abootimg-unpack-initrd

#!/bin/sh
#

initrd=${1:-initrd.img}
ramdisk=${2:-ramdisk}

if [ ! -f $initrd ]; then
    echo "$initrd does not exist."
    exit 1
fi

if [ -d $ramdisk ]; then
    echo "$ramdisk already exists."
    exit 1
fi

mkdir -p $ramdisk

zcat $initrd | ( cd $ramdisk; cpio -i )