Hello,
I need to process a backup on each filesystem that are mounted one fs at a time. Say like a variable has this;
/ /usr /var
but this would depend on the system (it may even have a /home)
Now I tried to run this simple script but it would not run until I press the 'Enter' key.
# for tape in $i
> do
> read $tape
> /sbin/vdump -0qf /dev/ntape/tape0 $tape
> sleep 1
> done
Any help please?
I need to process a backup on each filesystem that are mounted one fs at a time. Say like a variable has this;
/ /usr /var
but this would depend on the system (it may even have a /home)
Now I tried to run this simple script but it would not run until I press the 'Enter' key.
# for tape in $i
> do
> read $tape
> /sbin/vdump -0qf /dev/ntape/tape0 $tape
> sleep 1
> done
Any help please?