Quote:
Originally Posted by wcmmlynn
Can I avoid an OS restore?
|
Hm, depends..
You will have to work purely with bash internal commands....
Code:
#see where we are
pwd
# see where commands are supposed to be
echo $PATH
# go to the root
cd /
# see what root directories there are
echo *
# see if anything is in bin
echo /bin/*
# and usr/bin
echo /usr/bin/*