Jan 5, 2009 #1 timfox123 Technical User Joined Oct 30, 2008 Messages 13 Location US I want to pull all tapes out of my jukebox that are full and not recycleable. I need mminfo to tell which tapes I can move. How do I find the flags for full ? Recycleable ? This is Legato 7.2.2
I want to pull all tapes out of my jukebox that are full and not recycleable. I need mminfo to tell which tapes I can move. How do I find the flags for full ? Recycleable ? This is Legato 7.2.2
Jan 6, 2009 #2 julianbarnett Technical User Joined Sep 25, 2002 Messages 178 Location GB mminfo -m -q "pool=<POOL>,full,!volrecycle" | grep -v volume | awk '{ print $1 } Should do the trick Upvote 0 Downvote
Jan 6, 2009 #3 julianbarnett Technical User Joined Sep 25, 2002 Messages 178 Location GB oops - missed final ' ! mminfo -m -q "pool=<POOL>,full,!volrecycle" | grep -v volume | awk '{ print $1 }' Upvote 0 Downvote
oops - missed final ' ! mminfo -m -q "pool=<POOL>,full,!volrecycle" | grep -v volume | awk '{ print $1 }'
Jan 6, 2009 #4 johnmoore6 MIS Joined Apr 21, 2001 Messages 16 Location CH You may need to put a space between the "!" and "volrecycle", I have to for 7.4.x Upvote 0 Downvote
Jan 9, 2009 #5 a060463xyz IS-IT--Management Joined Oct 17, 2003 Messages 281 Location DE mminfo -r "volume" -q "location=<libname>,full,!volrecycle" does it for me Upvote 0 Downvote