n3tw0rkadm1n1strat0r
IS-IT--Management
Ok so I am having trouble making this script work, its for Data Protector, a backup program:
@echo off
for slot in `omnimm -list_pool IDB | \
grep "Library Name" | \
cut -f 2 -d: | \
cut -f 1 -d"]" `
do
omnimm -eject "Library Name" $slot
I'm not really good with the for statements but I have the basic layout there...
@echo off
for slot in `omnimm -list_pool IDB | \
grep "Library Name" | \
cut -f 2 -d: | \
cut -f 1 -d"]" `
do
omnimm -eject "Library Name" $slot
I'm not really good with the for statements but I have the basic layout there...