Your IP : 216.73.216.48


Current Path : /hdd/hdd11/log/scripts/
Upload File :
Current File : //hdd/hdd11/log/scripts/bash-4.3.046-x86_64-1

if [ -r bin/bash ]; then
  mv bin/bash bin/bash.old
fi
mv bin/bash4.new bin/bash
if [ -f bin/bash.old ]; then
  rm -f bin/bash.old
fi
if [ ! -r etc/shells ]; then
  touch etc/shells
  chmod 644 etc/shells
fi
if grep -wq /bin/bash etc/shells ; then
  true
else
  echo /bin/bash >> etc/shells
fi
( cd usr/bin ; rm -rf bash )
( cd usr/bin ; ln -sf /bin/bash bash )