I am trying to grep the /etc/vfstab file to determine the partitions to backup. If I do this:
grep -i /usr /etc/vfstab
I also get my data partitions (/usr1, /usr2 ...). (-:
Please give me an example of doing a grep for just /usr but making sure it does not match /usr1 also.
Thanks for your advice,
Michael42
grep -i /usr /etc/vfstab
I also get my data partitions (/usr1, /usr2 ...). (-:
Please give me an example of doing a grep for just /usr but making sure it does not match /usr1 also.
Thanks for your advice,
Michael42