#!/bin/sh # # This script will prepare a big dummy autochanger # . scripts/functions adir=@working_dir@/ach rm -rf $adir mkdir $adir 2> /dev/null # work with $1 slots by default nb_slot=${1:-80} # create the autochanger configuration file cat > $adir/conf <> $adir/barcodes cp /dev/null $adir/slot$i done # make a cleaning tape cln_slot=`expr $nb_vol + 1` echo $cln_slot:CLN01 >> $adir/barcodes cp /dev/null $adir/slot$cnl_slot # keep other empty next_empty=`expr $cnl_slot + 1` for i in `seq $next_empty $nb_slot`; do echo $i: >> $adir/barcodes done