[Vserver] UN - vhashify - ing

2006-07-12 Thread Roderick A. Anderson
Is there a neat trick to un-hashify a guest? Nothing I can find on the site or using google. Well actually I found one of my previous messages asking about this. Not really sure why I'd want to do this but the-powers-that-be might request it. It would probably help me understand better what

Re: [Vserver] UN - vhashify - ing

2006-07-12 Thread Corey Wright
On Wed, 12 Jul 2006 14:53:51 -0700 "Roderick A. Anderson" <[EMAIL PROTECTED]> wrote: > Is there a neat trick to un-hashify a guest? find / -type f \ | while read FILE; do cp -av ${FILE} ${FILE}.remove-hashification rm ${FILE} mv ${FILE}.remove-hashification ${FILE} done that's just

Re: [Vserver] UN - vhashify - ing

2006-07-13 Thread Roderick A. Anderson
Corey Wright wrote: On Wed, 12 Jul 2006 14:53:51 -0700 "Roderick A. Anderson" <[EMAIL PROTECTED]> wrote: Is there a neat trick to un-hashify a guest? find / -type f \ | while read FILE; do cp -av ${FILE} ${FILE}.remove-hashification rm ${FILE} mv ${FILE}.remove-hashification ${F

Re: [Vserver] UN - vhashify - ing

2006-07-13 Thread Corey Wright
On Thu, 13 Jul 2006 09:03:29 -0700 "Roderick A. Anderson" <[EMAIL PROTECTED]> wrote: > Corey Wright wrote: > > On Wed, 12 Jul 2006 14:53:51 -0700 > > "Roderick A. Anderson" <[EMAIL PROTECTED]> wrote: > > > > > >>Is there a neat trick to un-hashify a guest? > > > > > > find / -type f \ > > | wh