View Single Post
m2cm2c's Avatar
Posts: 100 | Thanked: 240 times | Joined on Feb 2010 @ The South Pole O.o
#7
good to hear
[edit]
Originally Posted by lostevil View Post
I don't have this file anymore but it was something like

if [ blahblahblahblah ]
...
fi

heh I didn't notice that post
heres what mine looks like

Code:
if [ -x /usr/sbin/gainroot.old ]
     mv /usr/sbin/gainroot.old /usr/sbin/gainroot
fi


I think it should look like this


Code:
if [ -x /usr/sbin/gainroot.old ]
then    
  mv /usr/sbin/gainroot.old /usr/sbin/gainroot
fi

Last edited by m2cm2c; 2010-03-12 at 00:45. Reason: fixed the "then" location