Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how delete multliple volumes from the database 1

Status
Not open for further replies.

Letreen

IS-IT--Management
May 15, 2003
7
0
0
US
I am attempting to delete multiple volume from the Media database, and would like to create a script to automate this process. instead of typing every volume name and nsrmm -dy a hundred times.
 
This would be better off in the Legato forum, but do you have a file containing a list of all volumes you want to delete?

If so, it's easy:

cat volume_delete_list | while read VOL
do
nsrmm -yd ${VOL}
done

and let it go.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top