I would like to input mminfo output into my nsrclone command without creating a batch file. In other words just run one command.
My mminfo command is:
mminfo -r ssid -q !incomplete,group=DailySQL,pool=DailyDisky
The above command provides the saveset list I need.
But how can I input this into nsrclone -b DailyClone -S ???
I have tried the following two commands which both fail:
for i in $(mminfo -r ssid -q "!incomplete,group=DailySQL,pool=DailyDisky");do;nsrclone -S "$i";done
for /F %i in (mminfo -r ssid -q "!incomplete,group=DailySQL,pool=DailyDisky");do;nsrclone -S "$i";done
Any ideas where I am going wrong?
Ps... this is NetWorker 7.3.3 on Windows 2003.
Thanks
Ross
My mminfo command is:
mminfo -r ssid -q !incomplete,group=DailySQL,pool=DailyDisky
The above command provides the saveset list I need.
But how can I input this into nsrclone -b DailyClone -S ???
I have tried the following two commands which both fail:
for i in $(mminfo -r ssid -q "!incomplete,group=DailySQL,pool=DailyDisky");do;nsrclone -S "$i";done
for /F %i in (mminfo -r ssid -q "!incomplete,group=DailySQL,pool=DailyDisky");do;nsrclone -S "$i";done
Any ideas where I am going wrong?
Ps... this is NetWorker 7.3.3 on Windows 2003.
Thanks
Ross