Browse Source

Benjamin Schieder:


			
			
				rocklinux
			
			
		
Benjamin Schieder 20 years ago
parent
commit
94c8a27331
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      scripts/Create-ISO

+ 5
- 0
scripts/Create-ISO

@ -185,6 +185,11 @@ echo "$spacer parsing for SPLIT disk."
while read type from to ; do
if [ $type = SPLIT ] ; then
find $from -type f -printf '%P\n' | sort > $index
grep ':dev' $index > ${index}_dev
grep ':doc' $index > ${index}_doc
grep -v ':dev' $index | grep -v ':doc' >${index}_new
cat ${index}_new ${index}_doc ${index}_dev >$index
rm ${index}_{dev,doc,new}
while read p ; do
add $from$p $to$p
done < $index

Loading…
Cancel
Save