Debian-CD-Scripts/i386/extractcd.sh

11 lines
148 B
Bash
Executable File

#!/bin/bash
if [ ! -d iso ]; then
mkdir iso
fi
if [ ! -d cd ]; then
mkdir cd
fi
mount $1 iso/
rsync -aP -H --exclude=TRANS.TBL iso/ cd
umount iso