On 4/22/06, Bruce Dubbs <[EMAIL PROTECTED]> wrote: > > I suppose we could use: > chown --version | head -n1 | cut -d")" -f2
Or, just grab the last field:
chown --version | head -n1 | awk '{ print $NF }'
--
Dan
--
http://linuxfromscratch.org/mailman/listinfo/lfs-book
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page
